voidrice/.config/aliasrc

28 lines
858 B
Text
Raw Normal View History

2019-02-02 21:13:30 +00:00
#!/bin/sh
alias ka="killall" \
2019-03-30 04:35:51 +00:00
mkd="mkdir -pv" \
2019-02-02 21:13:30 +00:00
mpv="mpv --input-ipc-server=/tmp/mpvsoc$(date +%s)" \
2019-02-19 20:28:29 +00:00
calcurse="calcurse -D ~/.config/calcurse" \
2019-03-30 04:35:51 +00:00
magit="nvim -c MagitOnly" \
2019-05-20 14:28:44 +00:00
xi="sudo xbps-install" \
2019-05-21 14:15:02 +00:00
xr="sudo xbps-remove" \
xq="xbps-query" \
2019-03-30 04:35:51 +00:00
f="$FILE" \
2019-02-02 21:13:30 +00:00
g="git" \
trem="transmission-remote" \
e="$EDITOR" \
v="$EDITOR" \
x="sxiv -ft *" \
sdn="sudo shutdown -h now" \
gua="git remote | xargs -L1 git push --all" \
ls="ls -hN --color=auto --group-directories-first" \
grep="grep --color=auto" \
diff="diff --color=auto" \
yt="youtube-dl --add-metadata -i -o '%(upload_date)s-%(title)s.%(ext)s'" \
yta="yt -x -f bestaudio/best" \
YT="youtube-viewer" \
ref="shortcuts >/dev/null; source ~/.config/shortcutrc" \
ffmpeg="ffmpeg -hide_banner"
2019-02-02 21:13:30 +00:00
2019-02-09 22:51:05 +00:00
command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d" # Use neovim for vim if present.