From 2aaf279c9e18cd5d3f02c33929324b6ab7fe7000 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Thu, 27 Mar 2025 11:35:46 +0000 Subject: [PATCH] feat(libs): Prise en compte de tmux dans la fonction term_change_title --- libs/term.bash | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) 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 }