# ---------------------------------------------------------------------- # file: ~/.bash_profile # author: Thayer Williams - http://cinderwick.ca # modified: August 05, 2008 # vim:enc=utf-8:nu:ai:si:et:ts=4:sw=4:ft=sh: # ---------------------------------------------------------------------- # Turn off TTY "start" and "stop" commands (C-q and C-s) --------------- # Bash uses C-s to do a forward history search stty start '' stty stop '' # keychain ssh-agent --------------------------------------------------- # start keychain, feed it keys and then source the results /usr/bin/keychain -Q -q ~/.ssh/id_rsa < /dev/null [[ -f $HOME/.keychain/$HOSTNAME-sh ]] && source $HOME/.keychain/$HOSTNAME-sh #eval `ssh-agent` # old method -- cannot traverse sessions #ssh-add < /dev/null # source ~/.bashrc when present ---------------------------------------- if [ -f .bashrc ]; then source .bashrc; fi # startx if logging in at VC/1 and save standard error to ~/.myXLog ---- if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/vc/1 ]]; then startx >& ~/.myXLog #startx logout fi # disable PANGO in Firefox -------------------------------------------- export MOZ_DISABLE_PANGO=1