feat(libs): Prise en compte de tmux dans la fonction term_change_title
This commit is contained in:
parent
5b0012ffc1
commit
2aaf279c9e
@ -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
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user