From 60ddaf329bae52f6bb9c82071c40c3d9e08add4f Mon Sep 17 00:00:00 2001 From: Simeon Simeonov Date: Sun, 5 Apr 2020 11:23:37 +0200 Subject: Make it possible to disable the low battery warning --- batteryarc-widget/batteryarc.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'batteryarc-widget/batteryarc.lua') diff --git a/batteryarc-widget/batteryarc.lua b/batteryarc-widget/batteryarc.lua index d4a67c5..0bf6bc0 100644 --- a/batteryarc-widget/batteryarc.lua +++ b/batteryarc-widget/batteryarc.lua @@ -36,6 +36,10 @@ local function worker(args) local warning_msg_text = args.warning_msg_text or 'Battery is dying' local warning_msg_position = args.warning_msg_position or 'bottom_right' local warning_msg_icon = args.warning_msg_icon or HOME .. '/.config/awesome/awesome-wm-widgets/batteryarc-widget/spaceman.jpg' + local enable_battery_warning = args.enable_battery_warning + if enable_battery_warning == nil then + enable_battery_warning = true + end local text = wibox.widget { id = "txt", @@ -124,7 +128,7 @@ local function worker(args) if charge < 15 then widget.colors = { low_level_color } - if status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then + if enable_battery_warning and status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then -- if 5 minutes have elapsed since the last warning last_battery_check = os.time() -- cgit v1.2.3