Change terminal title to cwd

This commit is contained in:
Benjamin Bädorf 2022-04-30 17:51:41 +02:00
parent 895cdc30b9
commit b516473f69
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C

View file

@ -22,7 +22,6 @@ in
[ "$(tty)" = "/dev/tty1" ] && exec sway
'';
shellAliases = {
nano = "nvim";
vi = "nvim";
@ -84,6 +83,10 @@ in
stty -ixon
stty erase '^?'
precmd () {
echo -e "\e]2;$(pwd)\e\\"
}
# If a command is not found, show me where it is
source ${pkgs.nix-index}/etc/profile.d/command-not-found.sh
''