Add click events to server blocks

This commit is contained in:
Jonathan Hodgson 2018-04-30 13:08:10 +01:00
parent 966a93ff2b
commit 76cab3cef5
4 changed files with 75 additions and 2 deletions

View file

@ -5,6 +5,27 @@ STATUS=$($LAMPP status 2> /dev/null)
APACHE=$(echo "$STATUS" | grep -i apache | grep -io not > /dev/null && echo "down" || echo "up")
function toggleApache(){
if [ $APACHE = "up" ]; then
gksudo $LAMPP stopapache
else
gksudo $LAMPP startapache
fi
}
function toggleAll(){
if [ $APACHE = "up" ]; then
gksudo $LAMPP stop
else
gksudo $LAMPP start
fi
}
case $BLOCK_BUTTON in
1) toggleApache ;;
3) toggleAll ;;
esac
if [ "$APACHE" = "up" ]; then
COLOUR="#00FF00"
else