This commit is contained in:
Solomon Laing 2025-12-12 07:29:08 +00:00
parent f876b3b82e
commit 68ba833271

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -x
# Use $XINITRC variable if file exists.
[ -f "$XINITRC" ] && alias startx="startx $XINITRC"
@ -15,7 +15,7 @@ alias \
rm="rm -vI" \
bc="bc -ql" \
mkd="mkdir -pv" \
ffmpeg="ffmpeg -hide_banner"
ffmpeg="ffmpeg -hide_banner" \
# Colorize commands when possible.
alias \
@ -23,12 +23,12 @@ alias \
grep="grep --color=auto" \
diff="diff --color=auto" \
ccat="highlight --out-format=ansi" \
ip="ip -color=auto"
ip="ip -color=auto" \
alias \
l="ls" \
ll="ls -l" \
lsa="ls -la"
lsa="ls -la" \
# These common commands are just too long! Abbreviate them.
alias \
@ -63,7 +63,7 @@ alias \
cls="clear" \
c="clear" \
cdc="cd && clear" \
\?="duck"
\?="duck" \
# git aliases
alias \
@ -73,15 +73,15 @@ alias \
gcam="git commit -am" \
gsta="git stash" \
gstac="git stash clear" \
gstaa="git stash apply"
gstaa="git stash apply" \
# drawterm
alias \
dtl="drawterm -u solomon -h central -a central" \
dtr="drawterm -u solomon -h inkletblot.com -a inkletbltot.com"
dtr="drawterm -u solomon -h inkletblot.com -a inkletbltot.com" \
alias \
calcurse="calcurse-select"
calcurse="calcurse-select" \
alias \
usta="systemctl --user start" \
@ -91,5 +91,5 @@ alias \
ureload="systemctl --user daemon-reload" \
ucat="systemctl --user cat" \
utimer="systemctl --user list-timers" \
usvc="systemctl --user --type=service"
usvc="systemctl --user --type=service" \