show red icon when volume is muted
This commit is contained in:
parent
2ee0cff703
commit
685b1fd595
|
@ -24,7 +24,7 @@ local update_graphic = function(widget, stdout, _, _, _)
|
|||
local volume = string.match(stdout, "(%d?%d?%d)%%")
|
||||
volume = tonumber(string.format("% 3d", volume))
|
||||
local volume_icon_name
|
||||
if mute == "off" then volume_icon_name="audio-volume-muted-symbolic"
|
||||
if mute == "off" then volume_icon_name="audio-volume-muted-symbolic_red"
|
||||
elseif (volume >= 0 and volume < 25) then volume_icon_name="audio-volume-muted-symbolic"
|
||||
elseif (volume < 50) then volume_icon_name="audio-volume-low-symbolic"
|
||||
elseif (volume < 75) then volume_icon_name="audio-volume-medium-symbolic"
|
||||
|
|
Loading…
Reference in New Issue