diff options
author | David Runge <dave@sleepmap.de> | 2015-03-25 21:11:17 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-03-25 21:11:17 +0100 |
commit | ae1e10ec24c3eeaa55b549df095863ed98cb1681 (patch) | |
tree | efbc43db8384acfa6d8fbd8fc2182bd7a42cec4d /bin | |
parent | 08ef849f87930ff7c17cb4421ed0416b1ef20935 (diff) | |
download | dotfiles-ae1e10ec24c3eeaa55b549df095863ed98cb1681.tar.gz dotfiles-ae1e10ec24c3eeaa55b549df095863ed98cb1681.tar.bz2 dotfiles-ae1e10ec24c3eeaa55b549df095863ed98cb1681.tar.xz dotfiles-ae1e10ec24c3eeaa55b549df095863ed98cb1681.zip |
bin/notify_mpd: Removing unneeded naughty notification stuff for awesome. Adding TODO on sending notification when mpc is not (yet) installed.
Diffstat (limited to 'bin')
-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" |