diff --git a/zshrc b/zshrc index dfcb244..6180a5a 100644 --- a/zshrc +++ b/zshrc @@ -62,13 +62,17 @@ alias minecraft="java -jar $HOME/.minecraft/launcher.jar" alias redwm='cd ~/abs/dwm; updpkgsums; makepkg -fi --noconfirm; killall dwm' -# Titre du terminal +# Term specific hacks case $TERM in xterm*) preexec () { print -Pn "\e]0;$1 -- ${USER}@${HOST}\a" } ;; + # Fix broken ssh with st + st*) + alias ssh='TERM=xterm ssh' + ;; esac