]> git.donarmstrong.com Git - home-base.git/blob - .bashrc
remove old aliases and devtodo from bashrc
[home-base.git] / .bashrc
1 # ~/.bashrc: executed by bash(1) for non-login shells.
2 # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
3 # for examples
4
5 # If running interactively, then:
6 if [ "$PS1" ]; then
7
8     # don't put duplicate lines in the history. See bash(1) for more options
9     export HISTCONTROL=ignoredups
10     if [ -x ~/bin/sane_editor ]; then
11         EDITOR=~/bin/sane_editor;
12     elif [ -x /usr/bin/jed ]; then
13         EDITOR="/usr/bin/jed";
14     elif [ -x /usr/bin/vi ]; then
15         EDITOR="/usr/bin/vi";
16     fi;
17
18     if [ -n "$EDITOR" ]; then
19         export EDITOR;
20     fi;
21     # bts debian options
22
23     if [ -e bin/faf ]; then
24         complete -F _command faf
25     fi;
26
27     export DEBEMAIL="don@debian.org"
28     export DEBHOME="$(eval 'echo' '~/projects/debian')"
29
30     export GTK_IM_MODULE=xim
31     export QT_IM_MODULE=xim
32
33     # enable color support of ls and also add handy aliases
34     eval `dircolors -b`
35     alias ls='ls --color=auto'
36
37     # See if we're in a chroot
38     if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
39         debian_chroot=$(cat /etc/debian_chroot)
40     fi
41
42     # we want to set the color based on what machine we're on
43     # if it's a remote, SSH_CONNECTION will be set
44     # set variable identifying the chroot you work in (used in the prompt below)
45     
46     # disable terminal bell
47     bind 'set bell-style none'
48
49     if [ -n "$SSH_CONNECTION" -o -n "$SSH_CLIENT" ]; then
50         # figure out what color to use
51         COLOR=$(hostname|md5sum|perl -ne 'if (/^([a-f\d]{8})/) {
52               my $num = unpack(q(L),pack(q(H*),$1));
53               my @col = map {(qq(0;${_}m),qq(1;${_}m))} 31..37;
54               my $col = $col[$num % @col];
55               if ($col eq q(0;36m)) {
56                  $col = q(1;30m);
57               }
58               print $col;
59               }')
60         PS1="${debian_chroot:+($debian_chroot)}\[\033[$COLOR\]\h \[\033[0;36m\]\t \w$\[\033[0m\] "
61         unset COLOR
62     else
63         PS1="${debian_chroot:+($debian_chroot)}\[\033[0;36m\]\h \t \w$\[\033[0m\] "
64     fi;
65     # \[\033[1;36m\][\w]\n\[\033[0;36m\][\h|\t]$ \[\033[0m\]
66
67     # make sure the term we're using exists in the termcap
68     TOEOPT='-a'
69     if ! toe $TOEOPT >/dev/null 2>&1; then
70         TOEOPT=''
71     fi;
72     if ! toe $TOEOPT|grep -q "^$TERM    "; then
73         # if it doesn't, try to switch
74         case $TERM in
75             rxvt*)
76                 TERM="rxvt"
77                 ;;
78             xterm*)
79                 TERM="xterm"
80                 ;;
81             *)
82                 ;;
83         esac
84         export TERM;
85     fi;
86     # If this is an xterm set the title to user@host:dir
87     case $TERM in
88         screen|xterm*)
89             PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
90             ;;
91         rxvt*)
92             PROMPT_COMMAND='echo -ne "\033]2;${USER}@${HOSTNAME}: ${PWD}\007"'
93             ;;
94
95         *)
96             ;;
97     esac
98
99     # enable programmable completion features (you don't need to enable
100     # this, if it's already enabled in /etc/bash.bashrc).
101     if [ -f /etc/bash_completion ]; then
102       . /etc/bash_completion;
103     fi;
104
105     # set up ssh-agent
106     if which ssh-agent >/dev/null && [ -d ~/.ssh ] &&  \
107         [ -z "$SSH_CONNECTION" ] &&  [ -z "$SSH_CLIENT" ]; then 
108 #       for 
109         if [ -e ~/.ssh/ssh_agent_info ] && \
110             [ -n "$(awk -F '[=;]' '/^SSH_AGENT_PID/{print $2}' ~/.ssh/ssh_agent_info)" ] && \
111             kill -0 "$(awk -F '[=;]' '/^SSH_AGENT_PID/{print $2}' ~/.ssh/ssh_agent_info)" >/dev/null 2>&1; then
112             . ~/.ssh/ssh_agent_info > /dev/null
113         elif [ -e ~/.ssh/ssh_agent_info_$(hostname) ] && \
114             kill -0 "$(awk -F '[=;]' '/^SSH_AGENT_PID/{print $2}' ~/.ssh/ssh_agent_info_$(hostname))" >/dev/null 2>&1; then
115             . ~/.ssh/ssh_agent_info_$(hostname) > /dev/null
116         else
117             ssh-agent -s > ~/.ssh/ssh_agent_info_$(hostname)
118             . ~/.ssh/ssh_agent_info_$(hostname) > /dev/null
119         fi;
120     fi;
121     
122     alias aumix2='aumix -d /dev/mixer1 -I'
123     if locale -a |grep -qi en_US.utf8; then
124         LANG="en_US.UTF-8"
125     else
126         LANG=C
127     fi;
128     export LANG
129     
130     # If we're running on liszt, include /var/list/.bin in the path
131     if [ "$(hostname)" == "liszt" ] && [ -d /var/list/.bin ]; then
132         PATH="/var/list/.bin:$PATH"
133     fi;
134     export PATH="$(getent passwd $(id -u)|awk -F: '{print $6}')/bin:$PATH"
135     
136     if [ ! -e ~/tmp ]; then
137         mkdir ~/tmp;
138     fi;
139     export TMPDIR="$(echo ~/tmp)";
140
141         cd ()
142         {
143             # use pushd instead of cd
144             if [ -z "$1" ] || [ "$1" == "-" ]; then
145                 builtin cd "$@"; # && [ -r .todo ] && devtodo ${TODO_OPTIONS};
146             else
147                 builtin pushd "$@" >/dev/null; # && [ -r .todo ] && devtodo ${TODO_OPTIONS};
148             fi;
149         }
150
151 fi