Created
September 21, 2023 14:18
-
-
Save shazron/061691c08d4d2aa557059ba78d701b6a to your computer and use it in GitHub Desktop.
iTerm2 - show current folder name in tab title
This file contains 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
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