Set `MPD is not running` in mpdarc-widget current song when MPD is not running.
This commit is contained in:
parent
a89e2fe76a
commit
944c00201a
|
@ -70,10 +70,14 @@ local update_graphic = function(widget, stdout, _, _, _)
|
||||||
mpdarc_current_song_widget.markup = current_song
|
mpdarc_current_song_widget.markup = current_song
|
||||||
else
|
else
|
||||||
icon.image = STOP_ICON_NAME
|
icon.image = STOP_ICON_NAME
|
||||||
|
if string.len(stdout) == 0 then -- MPD is not running
|
||||||
|
mpdarc_current_song_widget.markup = "MPD is not running"
|
||||||
|
else
|
||||||
widget.colors = { beautiful.widget_red }
|
widget.colors = { beautiful.widget_red }
|
||||||
mpdarc_current_song_widget.markup = ""
|
mpdarc_current_song_widget.markup = ""
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
mpdarc:connect_signal("button::press", function(_, _, _, button)
|
mpdarc:connect_signal("button::press", function(_, _, _, button)
|
||||||
if (button == 1) then awful.spawn(TOGGLE_MPD_CMD, false) -- left click
|
if (button == 1) then awful.spawn(TOGGLE_MPD_CMD, false) -- left click
|
||||||
|
|
Loading…
Reference in New Issue