Eternal Alchemists
Would you like to react to this message? Create an account in a few clicks or log in to continue.

"You stopped harvesting" notification script

2 posters

Go down

"You stopped harvesting" notification script Empty "You stopped harvesting" notification script

Post by Doggy Tue Jun 30, 2009 3:46 pm

Plays a sound whenever you stop harvesting.

Code:


#!/bin/sh
tail -0f ~/.elc/main/chat_log.txt | \
while read; do
    echo "== $REPLY"
    case "$REPLY" in
        *"You stopped harvesting"*)
        echo "STOP"
# Install Xdialog and uncomment the line below if you want a popup displayed when you stop harvesting
#      Xdialog --msgbox 'You stopped harvesting !' 0 0
        mplayer ~/snd/thunder1.wav
    ;;
    esac
done

Doggy
Doggy

Posts : 122
Join date : 2009-05-03
Location : Paris area (France)

Back to top Go down

"You stopped harvesting" notification script Empty Re: "You stopped harvesting" notification script

Post by boognish Tue Jun 30, 2009 4:44 pm

I remember some versions of bash do not set $REPLY as default so you have to write:

while read REPLY
boognish
boognish

Posts : 32
Join date : 2009-05-02
Age : 44
Location : Windy City

Back to top Go down

"You stopped harvesting" notification script Empty Re: "You stopped harvesting" notification script

Post by Doggy Thu Jul 02, 2009 5:42 pm

Boog is right (but if your bash don't set $REPLY, you can install Debian and Debian's Bash will set it Very Happy)

Modified code (not tested, but i don't anticipate any problem with that little change Very Happy) :

Code:


#!/bin/sh
tail -0f ~/.elc/main/chat_log.txt | \
while read REPLY; do
    echo "== $REPLY"
    case "$REPLY" in
        *"You stopped harvesting"*)
        echo "STOP"
# Install Xdialog and uncomment the line below if you want a popup displayed when you stop harvesting
#      Xdialog --msgbox 'You stopped harvesting !' 0 0
        mplayer ~/snd/thunder1.wav
    ;;
    esac
done

Doggy
Doggy

Posts : 122
Join date : 2009-05-03
Location : Paris area (France)

Back to top Go down

"You stopped harvesting" notification script Empty Re: "You stopped harvesting" notification script

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum