]> arthur.barton.de Git - ConfigScripts.git/blobdiff - user/bashrc
sys/bashrc, user/bashrc: code cleanup
[ConfigScripts.git] / user / bashrc
index 18a8ac30c27d9590f1c9e3787b74c796b59dbf4d..d4bfc0b3d6b39da33afb29f2addf624ecb908623 100644 (file)
@@ -3,53 +3,9 @@
 # Written 2006-2008 by Alexander Barton (alex@barton.de)
 #
 
-[ -e /tmp/ConfigDebug.$USER ] && echo " >> ~/.bashrc ..."
+[ -e ~/.ConfigScripts.debug ] && echo " >> ~/.bashrc ..."
 
-[ -z "$BASHRCREAD" -a -r /etc/bash.bashrc ] && source /etc/bash.bashrc
-[ -z "$BASHRCREAD" -a -r /etc/bashrc ] && source /etc/bashrc
-[ -z "$BASHRCREAD" -a -r $HOME/.etc/bashrc ] && source $HOME/.etc/bashrc
-
-# aptitude
-type -p aptitude >/dev/null 2>&1
-[ $? -eq 0 ] && alias aptitude="LC_ALL=C sudo aptitude"
-
-# btdownload
-type -p btdownloadcurses >/dev/null 2>&1
-[ $? -eq 0 ] && alias "btdownloadcurses"="btdownloadcurses --max_upload_rate 16"
-
-# ccache
-[ -d "/usr/lib/ccache" ] && PATH="/usr/lib/ccache:$PATH"
-
-# dpkg-buildpackage
-type -p dpkg-buildpackage >/dev/null 2>&1
-[ $? -eq 0 ] && alias dpkg-buildpackage="dpkg-buildpackage -kC24A0F637E364856"
-
-# gitk
-type -p gitk >/dev/null 2>&1
-[ $? -eq 0 ] && alias gitk="gitk 2>/dev/null"
-
-# screen
-type -p screen >/dev/null 2>&1
-if [ $? -eq 0 ]; then
-        alias "s"="screen"
-        alias "sr"="screen -dr"
-        alias "sx"="screen -x"
-       type -p irssi >/dev/null 2>&1
-        [ $? -eq 0 ] && alias "si"="screen irssi"
-fi
-
-# slrn
-type -p cleanscore >/dev/null 2>&1
-[ $? -eq 0 ] && alias slrn="cleanscore -f ~/.slrnscore && slrn"
-
-alias bblack="ssh arthur.barton.de sudo blacklist"
-alias pingblack="ssh gw1-0.fr.pingnet.de sudo blacklist"
-
-BLACK() {
-       echo " --- Arthur.Barton.DE ---"
-       bblack $*
-       echo " --- GW1-0.FR.PingNet.DE ---"
-       pingblack $*
-}
+[ -z "$BASHRCREAD" -a -r ~/.etc/bashrc ] && source ~/.etc/bashrc
+[ -r ~/.bashrc.user ] && source ~/.bashrc.user
 
 # -eof-