Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / tty / set_term_title.sh
diff --git a/scripts/tty/set_term_title.sh b/scripts/tty/set_term_title.sh
deleted file mode 100644 (file)
index 69c179a..0000000
+++ /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"
-