mirror of https://github.com/lcpz/lain.git
Merge pull request #204 from rohieb/feature/hide-mpd-notifications
mpd: make notifications hideable in widget config
This commit is contained in:
commit
6b0e66f721
|
@ -37,6 +37,7 @@ local function worker(args)
|
||||||
local music_dir = args.music_dir or os.getenv("HOME") .. "/Music"
|
local music_dir = args.music_dir or os.getenv("HOME") .. "/Music"
|
||||||
local cover_size = args.cover_size or 100
|
local cover_size = args.cover_size or 100
|
||||||
local default_art = args.default_art or ""
|
local default_art = args.default_art or ""
|
||||||
|
local show_notifications = args.show_notifications == true
|
||||||
local followmouse = args.followmouse or false
|
local followmouse = args.followmouse or false
|
||||||
local echo_cmd = args.echo_cmd or "echo"
|
local echo_cmd = args.echo_cmd or "echo"
|
||||||
local settings = args.settings or function() end
|
local settings = args.settings or function() end
|
||||||
|
@ -90,7 +91,7 @@ local function worker(args)
|
||||||
|
|
||||||
if mpd_now.state == "play"
|
if mpd_now.state == "play"
|
||||||
then
|
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
|
then
|
||||||
helpers.set_map("current mpd track", mpd_now.title)
|
helpers.set_map("current mpd track", mpd_now.title)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue