Add helper aliases

This commit is contained in:
Tony Grosinger 2022-02-11 17:51:50 -08:00
parent 3b0f4c893a
commit 3a538461f0

View File

@ -3,6 +3,8 @@ alias ls="exa --long --header --git --group"
alias cat="bat --theme=\"Visual Studio Dark+\""
alias tree="exa --tree"
alias la="ls -lhA"
alias calc="qalc"
alias dedsstore="find . -name \".DS_Store\" -delete"
# History
HISTSIZE=50000
@ -51,6 +53,10 @@ then
export PATH=$PATH:${HOME}/bin
fi
# Command to show temperatures
alias temps="paste <(cat /sys/class/thermal/thermal_zone*/type) <(cat /sys/class/thermal/thermal_zone*/temp) | column -s $'\t' -t | sed 's/\(.\)..$/.\1°C/'"
# fzf
source /usr/share/doc/fzf/examples/key-bindings.bash
source /usr/share/doc/fzf/examples/completion.bash