More aliases
This commit is contained in:
parent
1bca65bfc2
commit
52851161ed
1 changed files with 47 additions and 21 deletions
|
@ -1,27 +1,53 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
alias ka="killall" \
|
|
||||||
|
# Use neovim for vim if present.
|
||||||
|
command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d"
|
||||||
|
|
||||||
|
# Verbosity and settings that you pretty much just always are going to want.
|
||||||
|
alias \
|
||||||
|
bat="cat /sys/class/power_supply/BAT?/capacity" \
|
||||||
|
cp="cp -iv" \
|
||||||
|
mv="mv -iv" \
|
||||||
|
rm="rm -v" \
|
||||||
mkd="mkdir -pv" \
|
mkd="mkdir -pv" \
|
||||||
mpv="mpv --input-ipc-server=/tmp/mpvsoc$(date +%s)" \
|
yt="youtube-dl --add-metadata -i" \
|
||||||
calcurse="calcurse -D ~/.config/calcurse" \
|
yta="yt -x -f bestaudio/best" \
|
||||||
magit="nvim -c MagitOnly" \
|
ffmpeg="ffmpeg -hide_banner"
|
||||||
xi="sudo xbps-install" \
|
|
||||||
xr="sudo xbps-remove" \
|
# Colorize commands when possible.
|
||||||
xq="xbps-query" \
|
alias \
|
||||||
f="$FILE" \
|
|
||||||
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" \
|
ls="ls -hN --color=auto --group-directories-first" \
|
||||||
grep="grep --color=auto" \
|
grep="grep --color=auto" \
|
||||||
diff="diff --color=auto" \
|
diff="diff --color=auto" \
|
||||||
yt="youtube-dl --add-metadata -i -o '%(upload_date)s-%(title)s.%(ext)s'" \
|
ccat="highlight --out-format=ansi"
|
||||||
yta="yt -x -f bestaudio/best" \
|
|
||||||
YT="youtube-viewer" \
|
|
||||||
ref="shortcuts >/dev/null; source ~/.config/shortcutrc" \
|
|
||||||
ffmpeg="ffmpeg -hide_banner"
|
|
||||||
|
|
||||||
command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d" # Use neovim for vim if present.
|
# These common commands are just too long! Abbreviate them.
|
||||||
|
alias \
|
||||||
|
ka="killall" \
|
||||||
|
g="git" \
|
||||||
|
trem="transmission-remote" \
|
||||||
|
YT="youtube-viewer" \
|
||||||
|
sdn="sudo shutdown -h now" \
|
||||||
|
f="$FILE" \
|
||||||
|
e="$EDITOR" \
|
||||||
|
v="$EDITOR" \
|
||||||
|
p="sudo pacman" \
|
||||||
|
xi="sudo xbps-install" \
|
||||||
|
xr="sudo xbps-remove -R" \
|
||||||
|
xq="xbps-query"
|
||||||
|
|
||||||
|
# Clean up the home directory by using alternate config locations for programs
|
||||||
|
# not automatically XDG comliant.
|
||||||
|
alias \
|
||||||
|
calcurse="calcurse -D ~/.config/calcurse" \
|
||||||
|
abook="abook -C ~/.config/abook/abookrc --datafile ~/.config/abook/addressbook" \
|
||||||
|
tmux="tmux -f ~/.config/tmux.conf"
|
||||||
|
|
||||||
|
# This alias is important. It enables the `pauseallmpv` command.
|
||||||
|
alias mpv="mpv --input-ipc-server=/tmp/mpvsoc$(date +%s)"
|
||||||
|
|
||||||
|
# Some other stuff
|
||||||
|
alias \
|
||||||
|
magit="nvim -c MagitOnly" \
|
||||||
|
ref="shortcuts >/dev/null; source ~/.config/shortcutrc" \
|
||||||
|
weath="less -S ~/.local/share/weatherreport" \
|
||||||
|
|
Loading…
Reference in a new issue