68 lines
2.0 KiB
Bash
68 lines
2.0 KiB
Bash
#!/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"
|
|
|
|
# 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
|
|
|
|
# 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" \
|
|
mkd="mkdir -pv" \
|
|
yt="yt-dlp --embed-metadata -i" \
|
|
yta="yt -x -f bestaudio/best" \
|
|
ffmpeg="ffmpeg -hide_banner" \
|
|
nvidia-settings="nvidia-settings --config="$XDG_CONFIG_HOME"/nvidia/settings" \
|
|
ye="yay"
|
|
|
|
# Colorize commands when possible.
|
|
alias \
|
|
ls="ls -hN --color=auto --group-directories-first" \
|
|
grep="grep --color=auto" \
|
|
diff="diff --color=auto" \
|
|
ccat="highlight --out-format=ansi" \
|
|
lf="lfub" \
|
|
ip="ip -color=auto"
|
|
|
|
# These common commands are just too long! Abbreviate them.
|
|
alias \
|
|
ka="killall" \
|
|
ncdu="ncdu --exclude /proc/" \
|
|
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" \
|
|
jelly="pidof -s jellyfin || echo 1234 | sudo -S /lib/jellyfin/bin/jellyfin -w /usr/share/jellyfin/web -C /home/victor/.cache/jellyfin -c /home/victor/.config/jellyfin >/dev/null 2>&1 &" \
|
|
xq="xbps-query" \
|
|
z="zathura" \
|
|
jpgv="sxiv" \
|
|
pngv="sxiv" \
|
|
pdfv="zathura" \
|
|
jpegv="sxiv" \
|
|
bs="cd ~/Based/ && ls -a" \
|
|
trrnt="nordvpn c p2p && qbittorrent" \
|
|
q="exit" \
|
|
:q="exit" \
|
|
syncweb="rsync -vrP --delete-after ~/risgaard.xyz/ root@risgaard.xyz:/var/www/risgaard" \
|
|
|
|
alias \
|
|
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_DATA_HOME:-$HOME/.local/share}/weatherreport" \
|
|
ris="ssh risgaard@192.168.0.156" \
|
|
shutdown="poweroff -h now"
|