You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
157 B
15 lines
157 B
8 years ago
|
#
|
||
|
# Changes the current tab title
|
||
|
#
|
||
|
# Authors:
|
||
|
# nstCactus <snstCactus@gmail.com>
|
||
|
#
|
||
|
|
||
|
|
||
|
|
||
|
function tab-title {
|
||
|
echo -ne "\033]0;"$*"\007"
|
||
|
}
|
||
|
|
||
|
tab-title "$@"
|