Fixed mixed up icons for volume-toggle
authorDylan Lloyd <dylan@dylansserver.com>
Tue, 13 Mar 2012 18:36:07 +0000 (14:36 -0400)
committerDylan Lloyd <dylan@dylansserver.com>
Tue, 13 Mar 2012 18:36:07 +0000 (14:36 -0400)
scripts/volume-toggle

index 407bf01..d64f389 100755 (executable)
@@ -5,8 +5,8 @@ status=$(amixer get Master | tail -n1 | awk '{print $NF}')
 status=$(echo "${status%]}")
 status=$(echo "${status#[}")
 if [ $status == "on" ]
-  then notify-send -i /usr/share/icons/powermate/volume-on.png " "
-elif [ $status == "off" ]
   then notify-send -i /usr/share/icons/powermate/volume-mute.png " "
+elif [ $status == "off" ]
+  then notify-send -i /usr/share/icons/powermate/volume-on.png " "
 fi
 amixer set Master toggle