Skip to content

Instantly share code, notes, and snippets.

@shazron
Created September 21, 2023 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shazron/061691c08d4d2aa557059ba78d701b6a to your computer and use it in GitHub Desktop.
Save shazron/061691c08d4d2aa557059ba78d701b6a to your computer and use it in GitHub Desktop.
iTerm2 - show current folder name in tab title
if [ $ITERM_SESSION_ID ]; then
precmd() {
echo -ne "\033]0;${PWD##*/}\007"
}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment