Skip to content

Instantly share code, notes, and snippets.

View chrisjaure's full-sized avatar

Chris Jaure chrisjaure

  • WI
View GitHub Profile
@chrisjaure
chrisjaure / .bashrc
Created January 10, 2012 20:50
byobu statuses and tweaks
# make window name in byobu show current git branch
# git repo doesn't need to be hard-coded but overwrites custom window name
case "$TERM" in
screen*)
GIT_PS1_SHOWDIRTYSTATE=true
PROMPT_COMMAND='echo -ne "\033k$(__git_ps1)\033"'
;;
esac