Add bash configuration files
This commit is contained in:
17
libs/term.bash
Executable file
17
libs/term.bash
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
function term_change_title
|
||||
{
|
||||
case $TERM in
|
||||
# Change the window title of X terminals
|
||||
xterm*|rxvt*|urxvt*|Eterm)
|
||||
PROMPT_COMMAND='echo -ne "\033]0;${1}\007"'
|
||||
;;
|
||||
|
||||
# Change the window title of screen terminals
|
||||
screen*)
|
||||
PROMPT_COMMAND='echo -ne "\033k${1}\033\\"'
|
||||
;;
|
||||
esac
|
||||
|
||||
}
|
Reference in New Issue
Block a user