Skip to content

Commit

Permalink
Merge pull request lcpz#204 from rohieb/feature/hide-mpd-notifications
Browse files Browse the repository at this point in the history
mpd: make notifications hideable in widget config
  • Loading branch information
Luke Bonham committed Jun 8, 2016
2 parents 7bc8866 + fb14da7 commit 6b0e66f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion widgets/mpd.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -90,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)

Expand Down

0 comments on commit 6b0e66f

Please sign in to comment.