76 lines
2.3 KiB
Text
76 lines
2.3 KiB
Text
|
#!/bin/sh
|
||
|
|
||
|
# Use neovim for vim if present.
|
||
|
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
|
||
|
|
||
|
# Use $XINITRC variable if file exists.
|
||
|
[ -f "$XINITRC" ] && alias startx="startx $XINITRC"
|
||
|
|
||
|
[ -f "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC"
|
||
|
|
||
|
# sudo not required for some system commands
|
||
|
for command in mount umount sv pacman updatedb su shutdown poweroff reboot ; do
|
||
|
alias $command="sudo $command"
|
||
|
done; unset command
|
||
|
|
||
|
se() {
|
||
|
choice="$(find ~/.local/bin -mindepth 1 -printf '%P\n' | fzf)"
|
||
|
[ -f "$HOME/.local/bin/$choice" ] && $EDITOR "$HOME/.local/bin/$choice"
|
||
|
;}
|
||
|
|
||
|
# Verbosity and settings that you pretty much just always are going to want.
|
||
|
alias \
|
||
|
cp="cp -iv" \
|
||
|
mv="mv -iv" \
|
||
|
rm="rm -vI" \
|
||
|
bc="bc -ql" \
|
||
|
rsync="rsync -vrPlu" \
|
||
|
mkd="mkdir -pv" \
|
||
|
yt="yt-dlp --embed-metadata -i" \
|
||
|
yta="yt -x -f bestaudio/best" \
|
||
|
ytt="yt --skip-download --write-thumbnail" \
|
||
|
ffmpeg="ffmpeg -hide_banner" \
|
||
|
vim="nvim"
|
||
|
# Colorize commands when possible.
|
||
|
alias \
|
||
|
game="Xwayland -geometry 1920x1080 :12 & dwm" \
|
||
|
make="make -j12" \
|
||
|
cddocker="cd /$HOME/.local/share/docker" \
|
||
|
ls="eza --icons -la --group-directories-first" \
|
||
|
way="env GDK_BACKEND=wayland" \
|
||
|
x11="env GDK_BACKEND=x11 DISPLAY=:12" \
|
||
|
x112="QT_QPA_PLATFORM=xcb DISPLAY=:12" \
|
||
|
pipestop="killall pipewire && pipewire-pulse && wireplumber" \
|
||
|
pipestart="pipewire && pipewire-pulse && wireplumber" \
|
||
|
update="yay && sudo pacman -Syu" \
|
||
|
bemenu_run="bemenu-run --fn 'JetBrains Mono 10' \
|
||
|
-c -B 3 -R 9 -f -n -M 500 -l 15 \
|
||
|
--bdr '#8311DB' --hb '#8311DB' --nb '#292929' \
|
||
|
--ab '#292929' --fb '#292929' --hf '#FAF9F9' \
|
||
|
--tb '#8311DB' --tf '#FAF9F9'"
|
||
|
grep="grep --color=auto" \
|
||
|
diff="diff --color=auto" \
|
||
|
ccat="highlight --out-format=ansi" \
|
||
|
ip="ip -color=auto"
|
||
|
|
||
|
# These common commands are just too long! Abbreviate them.
|
||
|
alias \
|
||
|
ka="killall" \
|
||
|
g="git" \
|
||
|
trem="transmission-remote" \
|
||
|
YT="youtube-viewer" \
|
||
|
sdn="shutdown -h now" \
|
||
|
e="$EDITOR" \
|
||
|
v="$EDITOR" \
|
||
|
p="pacman" \
|
||
|
xi="sudo xbps-install" \
|
||
|
xr="sudo xbps-remove -R" \
|
||
|
xq="xbps-query" \
|
||
|
z="zathura"
|
||
|
|
||
|
alias \
|
||
|
lf="lfub" \
|
||
|
magit="nvim -c MagitOnly" \
|
||
|
ref="shortcuts >/dev/null; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc" \
|
||
|
weath="less -S ${XDG_CACHE_HOME:-$HOME/.cache}/weatherreport" \
|