From ab50e31249733aeee45bf4784fe1a259c2be18b1 Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Tue, 13 Mar 2012 14:36:07 -0400 Subject: [PATCH] Fixed mixed up icons for volume-toggle --- scripts/volume-toggle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/volume-toggle b/scripts/volume-toggle index 407bf01..d64f389 100755 --- a/scripts/volume-toggle +++ b/scripts/volume-toggle @@ -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 -- 2.30.2