echo -e "\033[6 q" # non-blinking
# various bash tweaks
+# disallow overwriting existing file using redirection
+set -o noclobber
# append to the history file, don't overwrite it
shopt -s histappend
shopt -s cmdhist
alias best="youtube-dl -f best"
alias e="$EDITOR"
alias se="SUDO_EDITOR=\"emacsclient\" sudo -e"
+alias s="startx"
aur() {
- cd ~/usr/builds
+ cd ~/s
[ -d ${1} ] || git clone https://aur.archlinux.org/${1}.git
cd ${1}
}