Skip to content

Instantly share code, notes, and snippets.

@cggaurav
Created December 7, 2013 15:39
Show Gist options
  • Save cggaurav/7844068 to your computer and use it in GitHub Desktop.
Save cggaurav/7844068 to your computer and use it in GitHub Desktop.
Change Tab Title to show CWD. ZSH
function settitle {
title_lab=${PWD##*/}
echo -ne "\e]2;$title_lab\a"
}
function cd() {
builtin cd "$@" && settitle;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment