From e1e5a06abef9b9b858d252e8709f5dc06416e032 Mon Sep 17 00:00:00 2001
From: James Meyer <james.meyer@operamail.com>
Date: Fri, 11 Jan 2013 16:43:56 -0600
Subject: LinHES-system:  remove lh_message.sh..it's no longer used

---
 abs/core/LinHES-system/lh_message.sh | 49 ------------------------------------
 1 file changed, 49 deletions(-)
 delete mode 100644 abs/core/LinHES-system/lh_message.sh

diff --git a/abs/core/LinHES-system/lh_message.sh b/abs/core/LinHES-system/lh_message.sh
deleted file mode 100644
index 3ac8132..0000000
--- a/abs/core/LinHES-system/lh_message.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/bash
-#  This script is called by msd_daemon.py and used to display messages on the osd_cat
-#  May be called directly but best used through msg_daemon
-
-
-MYTH_RUN_STATUS="1"
-. /etc/profile
-. /etc/systemconfig
-
-
-if [ -e /etc/X11/WINDOWMANAGER ]
-then
-    . /etc/X11/WINDOWMANAGER
-fi
-
-
-. /etc/osd_cat.cfg || {
-        color=yellow
-        outline=2
-        outlinecolour=black
-        shadow=0
-        shadowcolour=black
-        font="-adobe-helvetica-bold-*-*-*-34-*-*-*-*-*-*-*"
-}
-
-function msg_osd(){
-    DISPLAY=127.0.0.1:0   echo -e "$1"  | DISPLAY=127.0.0.1:0 osd_cat --pos=middle --align=center --offset=200 --delay=5 --color=$color --outline=$outline --outlinecolour=$outlinecolour --shadow=$shadow --shadowcolour=$shadowcolour --font=$font
-}
-
-function msg_pyosd(){
-    DISPLAY=127.0.0.1:0 /usr/LH/bin/msg_osd.py -m "$1"
-}
-
-function msg(){
-    if [ x$STARTUP_STYLE = xenhanced ]
-    then
-        msg_pyosd "$1"
-    else
-        msg_osd "$1"
-    fi
-
-}
-
-if [ x"${@}" = x ]
-then
-    echo "nothing to display"
-else
-    msg "${@}"
-fi
-- 
cgit v0.12