-
-
Save nschwermann/5135442 to your computer and use it in GitHub Desktop.
Display current Git branch and root directory in Mac OS X Terminal title bar.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add to .bash_profile | |
cd () { | |
builtin cd "$@" | |
update_title | |
} | |
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
get_git_root() { | |
basename $(git rev-parse --show-toplevel 2> /dev/null) 2> /dev/null | |
} | |
update_title() | |
{ | |
GIT_BRANCH=$(parse_git_branch) | |
if [ -n "$GIT_BRANCH" ]; then | |
GIT_ROOT=$(get_git_root) | |
echo -ne "\033]0;$(get_git_root): $(parse_git_branch)\007" | |
else | |
echo -ne "\033]0;\007" | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment