From c251f2844bbbe95f2c0cc2bf97008aa981fcfc85 Mon Sep 17 00:00:00 2001 From: copycat-killer Date: Wed, 8 Jun 2016 11:52:36 +0200 Subject: [PATCH] revert to not hidden as default 2 --- widgets/bat.lua | 4 ++-- widgets/mpd.lua | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/widgets/bat.lua b/widgets/bat.lua index e5b5afc..62d1469 100644 --- a/widgets/bat.lua +++ b/widgets/bat.lua @@ -28,7 +28,7 @@ local function worker(args) local timeout = args.timeout or 30 local batteries = args.batteries or (args.battery and {args.battery}) or {"BAT0"} local ac = args.ac or "AC0" - local notify = args.notify or true + local notify = args.notify or "on" local settings = args.settings or function() end bat.widget = wibox.widget.textbox('') @@ -133,7 +133,7 @@ local function worker(args) settings() -- notifications for low and critical states - if notify and bat_now.perc and bat_now.status == "Discharging" then + if notify == "on" and bat_now.perc and bat_now.status == "Discharging" then local nperc = tonumber(bat_now.perc) or 100 if nperc <= 5 then bat.id = naughty.notify({ diff --git a/widgets/mpd.lua b/widgets/mpd.lua index 65a9274..b0ab28f 100644 --- a/widgets/mpd.lua +++ b/widgets/mpd.lua @@ -37,7 +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 notify = args.notify or true + local notify = args.notify or "on" local followmouse = args.followmouse or false local echo_cmd = args.echo_cmd or "echo" local settings = args.settings or function() end @@ -91,7 +91,7 @@ local function worker(args) if mpd_now.state == "play" then - if notify and mpd_now.title ~= helpers.get_map("current mpd track") + if notify == "on" and mpd_now.title ~= helpers.get_map("current mpd track") then helpers.set_map("current mpd track", mpd_now.title) -- 2.39.2