These files are always sourced (never executed directly), so the #!/bin/bash shebang is inert and misleading. Drop it consistently across rc.d/*, profile.d/*, and aliases.d/*.
15 lines
263 B
Bash
Executable File
15 lines
263 B
Bash
Executable File
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 screen terminals
|
|
screen* | tmux*)
|
|
echo -ne "\033k${1}\033\\"
|
|
;;
|
|
esac
|
|
|
|
}
|