diff options
| author | Hasan Ramezani <hasan.r67@gmail.com> | 2018-11-06 21:42:27 +0100 | 
|---|---|---|
| committer | Hasan Ramezani <hasan.r67@gmail.com> | 2018-11-06 21:42:27 +0100 | 
| commit | 944c00201a89dfaaa10632b9e3603ebecd174a30 (patch) | |
| tree | cdda6e9068a545ed26c03feebdfc7c04199177bf /mpdarc-widget | |
| parent | a89e2fe76a2134cd473e98c94973267c59567771 (diff) | |
Set `MPD is not running` in mpdarc-widget current song when MPD is not running.
Diffstat (limited to 'mpdarc-widget')
| -rw-r--r-- | mpdarc-widget/mpdarc.lua | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/mpdarc-widget/mpdarc.lua b/mpdarc-widget/mpdarc.lua index da596f6..ca0f411 100644 --- a/mpdarc-widget/mpdarc.lua +++ b/mpdarc-widget/mpdarc.lua @@ -70,8 +70,12 @@ local update_graphic = function(widget, stdout, _, _, _)        mpdarc_current_song_widget.markup = current_song      else        icon.image = STOP_ICON_NAME -      widget.colors = { beautiful.widget_red } -      mpdarc_current_song_widget.markup = "" +      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 } +        mpdarc_current_song_widget.markup = "" +      end      end  end  | 
