diff options
Diffstat (limited to 'bin/notify_mpd')
-rwxr-xr-x | bin/notify_mpd | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/notify_mpd b/bin/notify_mpd index 36d8345..8bdcf8c 100755 --- a/bin/notify_mpd +++ b/bin/notify_mpd @@ -1,4 +1,5 @@ #!/bin/bash +# TODO: notify-send on non availabilty of mpc mpc "$@" > /dev/null lines=`mpc | wc -l` @@ -36,10 +37,6 @@ else text="$flags $volume" fi -## AWESOME -#echo 'naughty.destroy(notify_mpc)' | awesome-client -#echo 'notify_mpc=naughty.notify({title = "'$title'", text = "'$text'"})' | awesome-client - ## NOTIFY-SEND notify-send -t 2000 "$title" "$text" |