2019-02-02 21:13:30 +00:00
|
|
|
#!/bin/sh
|
2019-08-18 16:33:35 +00:00
|
|
|
|
|
|
|
# Use neovim for vim if present.
|
2020-08-04 14:14:03 +00:00
|
|
|
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
|
2019-08-18 16:33:35 +00:00
|
|
|
|
2021-03-07 20:40:43 +00:00
|
|
|
# Use $XINITRC variable if file exists.
|
|
|
|
[ -f "$XINITRC" ] && alias startx="startx $XINITRC"
|
|
|
|
|
2023-02-17 15:18:01 +00:00
|
|
|
[ -f "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC"
|
|
|
|
|
2021-03-07 20:44:52 +00:00
|
|
|
# sudo not required for some system commands
|
2021-08-25 12:02:39 +00:00
|
|
|
for command in mount umount sv pacman updatedb su shutdown poweroff reboot ; do
|
2021-05-31 00:55:28 +00:00
|
|
|
alias $command="sudo $command"
|
|
|
|
done; unset command
|
2021-03-07 20:44:52 +00:00
|
|
|
|
2023-02-17 15:18:01 +00:00
|
|
|
se() {
|
|
|
|
choice="$(find ~/.local/bin -mindepth 1 -printf '%P\n' | fzf)"
|
|
|
|
[ -f "$HOME/.local/bin/$choice" ] && $EDITOR "$HOME/.local/bin/$choice"
|
|
|
|
;}
|
2022-07-19 21:04:17 +00:00
|
|
|
|
2019-08-18 16:33:35 +00:00
|
|
|
# Verbosity and settings that you pretty much just always are going to want.
|
|
|
|
alias \
|
|
|
|
cp="cp -iv" \
|
|
|
|
mv="mv -iv" \
|
2020-05-01 20:58:21 +00:00
|
|
|
rm="rm -vI" \
|
2021-03-07 20:40:43 +00:00
|
|
|
bc="bc -ql" \
|
2023-02-17 15:18:01 +00:00
|
|
|
rsync="rsync -vrPlu" \
|
2019-03-30 04:35:51 +00:00
|
|
|
mkd="mkdir -pv" \
|
2022-03-29 01:28:41 +00:00
|
|
|
yt="yt-dlp --embed-metadata -i" \
|
2019-08-18 16:33:35 +00:00
|
|
|
yta="yt -x -f bestaudio/best" \
|
2023-02-17 15:18:01 +00:00
|
|
|
ytt="yt --skip-download --write-thumbnail" \
|
2019-08-18 16:33:35 +00:00
|
|
|
ffmpeg="ffmpeg -hide_banner"
|
|
|
|
|
|
|
|
# Colorize commands when possible.
|
|
|
|
alias \
|
2019-02-02 21:13:30 +00:00
|
|
|
ls="ls -hN --color=auto --group-directories-first" \
|
|
|
|
grep="grep --color=auto" \
|
|
|
|
diff="diff --color=auto" \
|
2022-03-21 13:59:39 +00:00
|
|
|
ccat="highlight --out-format=ansi" \
|
|
|
|
ip="ip -color=auto"
|
2019-08-18 16:33:35 +00:00
|
|
|
|
|
|
|
# These common commands are just too long! Abbreviate them.
|
|
|
|
alias \
|
|
|
|
ka="killall" \
|
|
|
|
g="git" \
|
|
|
|
trem="transmission-remote" \
|
2019-02-02 21:13:30 +00:00
|
|
|
YT="youtube-viewer" \
|
2021-09-23 18:54:58 +00:00
|
|
|
sdn="shutdown -h now" \
|
2019-08-18 16:33:35 +00:00
|
|
|
e="$EDITOR" \
|
|
|
|
v="$EDITOR" \
|
2021-08-25 13:51:52 +00:00
|
|
|
p="pacman" \
|
2019-08-18 16:33:35 +00:00
|
|
|
xi="sudo xbps-install" \
|
|
|
|
xr="sudo xbps-remove -R" \
|
2020-04-25 12:03:55 +00:00
|
|
|
xq="xbps-query" \
|
|
|
|
z="zathura"
|
2019-08-18 16:33:35 +00:00
|
|
|
|
|
|
|
alias \
|
2022-03-06 18:19:51 +00:00
|
|
|
lf="lfub" \
|
2019-08-18 16:33:35 +00:00
|
|
|
magit="nvim -c MagitOnly" \
|
2021-04-06 18:53:19 +00:00
|
|
|
ref="shortcuts >/dev/null; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc" \
|
2022-10-02 19:11:17 +00:00
|
|
|
weath="less -S ${XDG_CACHE_HOME:-$HOME/.cache}/weatherreport" \
|