Gitify the working tree.
[profile.git] / sshcolourterm
diff --git a/sshcolourterm b/sshcolourterm
deleted file mode 100755 (executable)
index 02ae9e1..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-#
-# $Id$
-#
-
-SSHCOLOURS=~/.ssh/colours
-
-fqdn=${1##*@}
-colour=
-
-# Get colour by regex.
-for path in $(ls "$SSHCOLOURS" | lensort -r); do
-  re=${path##*/}
-  echo "$fqdn" | grep -qs "$re" || continue
-  colour=$(readlink "$SSHCOLOURS/$path")
-  break
-done
-
-if [ ! -z "$colour" ]; then
-  colour=${colour##*/}
-  colour=${colour##*:}
-  echo -e "\033]49;$colour\007"
-  clear
-fi
-
-exec ${SSHTERM_SSH:-ssh} ${1+"$@"}