The keycode for Alt_R seems to have changed on Ubuntu. Update 113->108.
[dotfiles-public.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 [ -f /etc/bashrc ]; then
6     . /etc/bashrc
7 fi
8
9 # personalize path
10 export PATH=$HOME/bin:$HOME/script:$HOME/script/python:$HOME/script/lab:$HOME/lib/ruby/gems/1.8/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
11 export LD_LIBRARY_PATH=~/lib
12
13 # personalize latex path
14 export TEXINPUTS=":.:$HOME/projects/latex/common/"
15
16 # personalize python path
17 PYTHON_VERSION=$(python -c 'import sys; print ".".join([str(i) for i in sys.version_info[:2]])')
18 export PYTHONPATH=".:$HOME/lib/python:$HOME/lib/python$PYTHON_VERSION/site-packages:$HOME/.python"
19
20 # append personal manpages to manpath
21 export MANPATH=":$HOME/share/man"
22
23 # personalize Java path (found by tracing from `which javac`)
24 export JAVA_HOME=/usr/lib/jvm/java-6-openjdk/
25
26 # personalize ruby and rubygems paths
27 # from http://docs.rubygems.org/read/chapter/15
28 PREFIX=$HOME
29 export GEM_HOME=$PREFIX/lib/ruby/gems/1.8
30 export RUBYLIB=$PREFIX/lib/ruby:$PREFIX/lib/site_ruby/1.8
31
32
33 # If not running interactively, don't do anything else
34 [ -z "$PS1" ] && return
35
36 # don't put duplicate line in the history and ignore lines starting
37 # with a space.  See bash(1).
38 export HISTCONTROL=ignoreboth
39
40 # check the window size after each command and, if necessary,
41 # update the values of LINES and COLUMNS.
42 shopt -s checkwinsize
43
44 # make less more friendly for non-text input files, see lesspipe(1)
45 [ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"
46
47 # set variable identifying the chroot you work in (used in the prompt below)
48 if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
49     debian_chroot=$(cat /etc/debian_chroot)
50 fi
51
52 # set a fancy prompt (non-color, unless we know we "want" color)
53 case "$TERM" in
54     xterm-color) color_prompt=yes;;
55 esac
56
57 # uncomment for a colored prompt, if the terminal has the capability; turned
58 # off by default to not distract the user: the focus in a terminal window
59 # should be on the output of commands, not on the prompt
60 force_color_prompt=yes
61
62 if [ -n "$force_color_prompt" ]; then
63     if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
64         # We have color support; assume it's compliant with Ecma-48
65         # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
66         # a case would tend to support setf rather than setaf.)
67         color_prompt=yes
68     else
69         color_prompt=
70     fi
71 fi
72
73 if [ "$color_prompt" = yes ]; then
74     # \[\033[XXm\] sets the color.  XX = 00:default, 31:red, 33:yellow
75     PS1='${debian_chroot:+($debian_chroot)}\[\033[31m\]\u@\h\[\033[00m\]:\[\033[33m\]\W\[\033[00m\]\$ '
76 else
77     PS1='${debian_chroot:+($debian_chroot)}\u@\h:\W\$ '
78 fi
79 unset color_prompt force_color_prompt colorA colorB
80
81 # If this is an xterm set the title to user@host:dir
82 case "$TERM" in
83 xterm*|rxvt*)
84     PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
85     ;;
86 *)
87     ;;
88 esac
89
90 # Alias definitions.
91 # You may want to put all your additions into a separate file like
92 # ~/.bash_aliases, instead of adding them here directly.
93 # See /usr/share/doc/bash-doc/examples in the bash-doc package.
94
95 #if [ -f ~/.bash_aliases ]; then
96 #    . ~/.bash_aliases
97 #fi
98
99 # Make file system utilities friendlier
100 alias rm='rm -iv'
101 alias rmdir='rmdir -v'
102 alias cp='cp -iv'
103 alias mv='mv -iv'
104 alias less='less -R'
105
106 # Configure useful programs
107 alias lp='/usr/bin/lp -o sides=two-sided-long-edge -o media=letter -o cpi=16 -o lpi=10'
108 alias lpb='/usr/bin/lp -o sides=two-sided-long-edge -o media=letter -o cpi=12 -o lpi=6'
109 alias lpi='/usr/bin/lp -o fitplot'
110 alias emacs='emacs -nw'
111 alias xterm='xterm -fg white -bg black'
112 alias w3mg='w3m http://www.google.com'
113 alias w3mh='w3m http://www.physics.drexel.edu/~wking/'
114 alias calendar='calendar -A28'
115 alias acroread='acroread -geometry 1270x950'
116 alias graph='graph -TX -C'
117 alias snownews='snownews -u'
118 alias oggr='ogg123 -qb 500' # play ogg radio streams (quiet, big input buffer)
119
120 # Alias useful one-liners & common commands
121 alias findex='find . -perm -u+x ! -type d'
122 alias sortdat='find . -printf "%TY-%Tm-%Td+%TH:%TM:%TS %h/%f\n" | sort -n'
123 alias sortdirdat='find . -type d -printf "%TY-%Tm-%Td+%TH:%TM:%TS %h/%f\n" | sort -n'
124 alias sshy='ssh wking@129.25.24.53'
125 alias ssha='ssh sysadmin@129.25.7.55'
126 alias sshxa='ssh -X sysadmin@129.25.7.55'
127
128 # enable color support of ls and also add handy aliases
129 if [ "$TERM" != "dumb" ] && [ -x /usr/bin/dircolors ]; then
130     eval "`dircolors -b`"
131     alias ls='ls --color=auto'
132     #alias dir='ls --color=auto --format=vertical'
133     #alias vdir='ls --color=auto --format=long'
134
135     alias grep='grep --color=auto'
136     #alias fgrep='fgrep --color=auto'
137     #alias egrep='egrep --color=auto'
138 fi
139
140 # some more ls aliases
141 alias ll='ls -l'
142 alias la='ls -A'
143 alias l='ls -CF'
144
145 # enable programmable completion features (you don't need to enable
146 # this if it's already enabled in /etc/bash.bashrc and /etc/profile
147 # sources /etc/bash.bashrc).
148 if [ -f /etc/bash_completion ]; then
149     . /etc/bash_completion
150 fi
151
152 # define default programs
153 export EDITOR="/usr/bin/emacs -nw"
154 export PAGER="less"
155
156 # colorize file listings (di was 34 (blue), swapped with 33 (yellow))
157 export LS_COLORS='no=00:fi=00:di=00;33:ln=00;36:pi=40;34:so=00;35:bd=40;34;01:cd=40;34;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:'
158
159 # turn off terminal beep in X
160 if [ $TERM == "xterm" ] && [ -n "$DISPLAY" ]
161     then
162     xset b off
163 fi
164
165 # turn of terminal beeps in the console, unless connecting via SSH
166 if [ -z "$SSH_CLIENT" ]; then
167     if [ ! -z "$TERM" ]; then
168         setterm -blength 0
169     fi
170 fi
171
172 ### ---- begin .dotfiles section ---- (keep this magic comment)
173
174 # Check for Git (versioning system) so we know how to get our .dotfiles
175 GIT_PATH=`which git`
176 if [ -n "$GIT_PATH" ];then
177    GIT_INSTALLED="true"
178 else
179    GIT_INSTALLED="false"
180 fi
181
182 # If we don't have checked out copies of our dotfiles, get them
183 if [ ! -d ~/.dotfiles/ ]; then
184     http="http://einstein.physics.drexel.edu/~wking/code/git/dotfiles.git"
185     ssh="http://einstein.physics.drexel.edu/~wking/code/git/dotfiles.git"
186     tgz="http://einstein.physics.drexel.edu/~wking/code/tar/dotfiles.tgz"
187     if [ $GIT_INSTALLED == "true" ]; then
188         git clone $http ~/.dotfiles
189         # setup to use ssh by default.
190         sed -i "s/$http/$ssh/" ~/.dotfiles/.git/config
191     else
192         # fallback on wgetting the tarball
193         pushd ~
194         wget --output-document dotfiles.tgz $tgz
195         tar -xzvf dotfiles.tgz
196         rm -rf dotfiles.tgz
197         popd
198     fi
199 fi
200
201 # If we have checked out copies of our dotfiles (i.e. clone successful)
202 if [ -d ~/.dotfiles/ ]; then
203     # Update once a week from our remote repository.
204     if [ ! -e ~/.dotfiles/updated.`date +%U` ]; then
205         rm -f ~/.dotfiles/updated.* 2>/dev/null
206         touch ~/.dotfiles/updated.`date +%U`
207         pushd ~/.dotfiles
208         make fixup
209         popd
210     fi
211 fi
212
213 ### ---- end .dotfiles section ---- (keep this magic comment)