Created
December 22, 2010 14:56
-
-
Save dz0ny/751610 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| exec 1>/dev/null | |
| #state detection | |
| PLAYING="`echo status | nc 127.0.0.1 6600 | grep -o 'state: play' -c`" | |
| echo $PLAYING > /proc/diag/led/power | |
| if [ "$PLAYING" = "0" ];then | |
| echo play | nc 127.0.0.1 6600 | |
| exit | |
| else | |
| echo stop | nc 127.0.0.1 6600 | |
| exit | |
| fi | |
| #state detection | |
| PLAYING="`echo status | nc 127.0.0.1 6600 | grep -o 'state: play' -c`" | |
| echo $PLAYING > /proc/diag/led/power |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment