X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/168b20afce0581defe7b07588e609b7cdb1af36b..fb14da7adc6c9dc3d9af1b2f7aa4f572c5794ec2:/widgets/mpd.lua diff --git a/widgets/mpd.lua b/widgets/mpd.lua index c437347..b2327bd 100644 --- a/widgets/mpd.lua +++ b/widgets/mpd.lua @@ -37,6 +37,7 @@ local function worker(args) local music_dir = args.music_dir or os.getenv("HOME") .. "/Music" local cover_size = args.cover_size or 100 local default_art = args.default_art or "" + local show_notifications = args.show_notifications == true local followmouse = args.followmouse or false local echo_cmd = args.echo_cmd or "echo" local settings = args.settings or function() end @@ -59,6 +60,7 @@ local function worker(args) mpd_now = { state = "N/A", file = "N/A", + name = "N/A", artist = "N/A", title = "N/A", album = "N/A", @@ -89,7 +91,7 @@ local function worker(args) if mpd_now.state == "play" then - if mpd_now.title ~= helpers.get_map("current mpd track") + if show_notifications and mpd_now.title ~= helpers.get_map("current mpd track") then helpers.set_map("current mpd track", mpd_now.title)