Created
February 8, 2024 17:25
-
-
Save jaimemrjm/15f4d952db10ce6145063f6dc217325a to your computer and use it in GitHub Desktop.
WSL tips
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
## Configurar .zshrc para que cambie el titulo de la terminal de Windows | |
DISABLE_AUTO_TITLE="true" | |
HOSTNAME=$(hostname) | |
function precmd () { | |
window_title="\033]0;${PWD##*/}@$HOSTNAME\007" | |
echo -ne "$window_title" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment