]> git.donarmstrong.com Git - home-base.git/blobdiff - .bashrc
remove old aliases and devtodo from bashrc
[home-base.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 0b9fb0c03176ecc848c83141e45fc705171ed407..37b7c82c08b43c2860d7594bbee44c2e4b4e39cf 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -27,17 +27,13 @@ if [ "$PS1" ]; then
     export DEBEMAIL="don@debian.org"
     export DEBHOME="$(eval 'echo' '~/projects/debian')"
 
+    export GTK_IM_MODULE=xim
+    export QT_IM_MODULE=xim
+
     # enable color support of ls and also add handy aliases
     eval `dircolors -b`
     alias ls='ls --color=auto'
-    alias gr='gimp-remote'
-    alias emc='sane_editor'
-
-    alias svn-b="svn-buildpackage --svn-builder 'pdebuild --buildresult ..' --svn-ignore-new"
 
-    # set a fancy prompt
-    #printf '\33]2;%s\007'
-    
     # See if we're in a chroot
     if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
        debian_chroot=$(cat /etc/debian_chroot)
@@ -47,6 +43,9 @@ if [ "$PS1" ]; then
     # if it's a remote, SSH_CONNECTION will be set
     # set variable identifying the chroot you work in (used in the prompt below)
     
+    # disable terminal bell
+    bind 'set bell-style none'
+
     if [ -n "$SSH_CONNECTION" -o -n "$SSH_CLIENT" ]; then
        # figure out what color to use
        COLOR=$(hostname|md5sum|perl -ne 'if (/^([a-f\d]{8})/) {
@@ -139,13 +138,6 @@ if [ "$PS1" ]; then
     fi;
     export TMPDIR="$(echo ~/tmp)";
 
-#     if [ -n "$(which devtodo)" ]; then
-#      for a in tda tdd tde; do
-#          alias "s${a}"="STODO_NO_COMMIT=1 $a"
-#      done;
-# 
-#      TODO_OPTIONS="--timeout --summary"
-
        cd ()
        {
            # use pushd instead of cd
@@ -156,17 +148,4 @@ if [ "$PS1" ]; then
            fi;
        }
 
-#      pushd ()
-#      {
-#             builtin pushd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS}
-#      }
-#      
-#      popd ()
-#      {
-#             builtin popd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS}
-#      }              
-       
-        # Run todo initially upon login
-#      devtodo ${TODO_OPTIONS}
-#     fi;
 fi