diff --git a/libs/term.bash b/libs/term.bash index c0d317b..e1b183f 100755 --- a/libs/term.bash +++ b/libs/term.bash @@ -1,17 +1,16 @@ #!/bin/bash -function term_change_title -{ +function term_change_title { case $TERM in - # Change the window title of X terminals - xterm*|rxvt*|urxvt*|Eterm) - echo -ne "\033]0;${1}\007" - ;; + # Change the window title of X terminals + xterm* | rxvt* | urxvt* | Eterm) + echo -ne "\033]0;${1}\007" + ;; - # Change the window title of screen terminals - screen*) - echo -ne "\033k${1}\033\\" - ;; + # Change the window title of screen terminals + screen* | tmux*) + echo -ne "\033k${1}\033\\" + ;; esac }