On Tue, Jan 30, 2018 at 1:39 PM, Garry Williams <gtwilli...@gmail.com>
wrote:

> On Tue, Jan 30, 2018 at 2:22 PM, InvalidPath <invalid.p...@gmail.com>
> wrote:
> > Does anyone know if it's even remotely possible to have teh tab names in
> > Konsole change per remote host you ssh into?
>
> Use %w in tab title format and remote tab title format.
>
> Then use this in your shell rc (I use zshrc -- maybe you use bashrc):
>
>     chpwd() {
>         [[ -t 1 ]] || return
>         case $TERM in
>             sun-cmd) print -Pn "\e]l%~\e\\"
>             ;;
>             *xterm*|rxvt|(dt|k|E)term) print -Pn "\e]2;[%m] %~\a"
>             ;;
>             vt220) print -Pn "\e]2;[%m] %~\a"
>             ;;
>         esac
>     }
>
>     chpwd
>
> Now try to remember to "cd ." after loging out of a remote shell to
> reset the window title.  :-)
>
> --
> Garry Williams
> _______________________________________________
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>

Holy crap.. *thanks so much* Garry.  I just knew someone out there had
figured this out!!
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org

Reply via email to