diff options
| -rw-r--r-- | abs/core/LinHES-system/lh_message.sh | 49 | 
1 files changed, 0 insertions, 49 deletions
| 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 | 
