X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Ftty%2Fset_term_title.sh;fp=scripts%2Ftty%2Fset_term_title.sh;h=0000000000000000000000000000000000000000;hb=7b39f7e279005c8466ef508220a532ce2aa4abf8;hp=69c179a0a5c3bb3683cdef76d8eb1046bae9da08;hpb=3fbd372b35b15a19fb171d5ae34294ff7b1e6485;p=feisty_meow.git diff --git a/scripts/tty/set_term_title.sh b/scripts/tty/set_term_title.sh deleted file mode 100644 index 69c179a0..00000000 --- a/scripts/tty/set_term_title.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -# terminal labeller: sets the current terminal's title to the arguments -# specified on the command line, or if those are blank, set the title to -# the hostname. - -title="$*" -if [ -z "${title}" ]; then - title="$(hostname)" -fi -#echo title will be $title - -echo -n -e "\033]0;${title}\007" -