Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / tty / label_terminal_with_infos.sh
diff --git a/scripts/tty/label_terminal_with_infos.sh b/scripts/tty/label_terminal_with_infos.sh
deleted file mode 100644 (file)
index 91c1312..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-# this script makes a new title for the terminal window that matches the
-# hostname and some other details.
-
-source $FEISTY_MEOW_SCRIPTS/core/functions.sh
-
-pruned_host=$(echo $HOSTNAME | sed -e 's/^\([^\.]*\)\..*$/\1/')
-date_string=$(date +"%Y %b %e @ %T")
-
-user=$USER
-if [ -z "$user" ]; then
-  # try snagging the windoze name.
-  user=$USERNAME
-fi
-
-new_title="-- $user@$pruned_host -- [$date_string]"
-
-bash "$FEISTY_MEOW_SCRIPTS/tty/set_term_title.sh" "$new_title"