From c5b4371aa6bfcb5fdf895c0f3c9c355e54a75316 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 8 Sep 2019 13:06:03 +0000 Subject: [PATCH] Override default .bashrc aliases instead of relocating into .bash_aliases --- configs/bash/.bash_aliases | 5 +---- configs/bash/.bashrc | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/configs/bash/.bash_aliases b/configs/bash/.bash_aliases index 1f0e2db..74c8504 100644 --- a/configs/bash/.bash_aliases +++ b/configs/bash/.bash_aliases @@ -1,10 +1,7 @@ alias gitkapp='git config --global user.name "Shaun Reed" && git config --global user.email "shaunrd0@gmail.com"' - -# Default .bashrc aliases stored here - +# Overrides for default .bashrc aliases and exports # Alias / export customizations - # colored GCC warnings and errors #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' diff --git a/configs/bash/.bashrc b/configs/bash/.bashrc index 7a499ac..770cb92 100644 --- a/configs/bash/.bashrc +++ b/configs/bash/.bashrc @@ -84,6 +84,20 @@ if [ -x /usr/bin/dircolors ]; then alias egrep='egrep --color=auto' fi +# Alias / export customizations + +# colored GCC warnings and errors +#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' + +# some more ls aliases +alias ll='ls -alF' +alias la='ls -A' +alias l='ls -CF' + +# Add an "alert" alias for long running commands. Use like so: +# sleep 10; alert +alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' + # Edit ~/.bash_aliases, instead of adding them here directly. # See /usr/share/doc/bash-doc/examples in the bash-doc package.