summaryrefslogtreecommitdiff
path: root/battery-widget
diff options
context:
space:
mode:
authorSam Delmerico <svdelmerico@gmail.com>2018-06-16 00:39:14 -0400
committerSam Delmerico <svdelmerico@gmail.com>2018-06-16 00:39:14 -0400
commit3d38cdb866bc6360b1d00d6b8ebdc695fa41bb0d (patch)
tree968d0a352d91cb0e9f6a9625504c6d79c33d9448 /battery-widget
parentbfe818b11e3a15fefc1b76383a7e1b5e1f7827ff (diff)
forgot to include update for low battery frequency
Diffstat (limited to 'battery-widget')
-rw-r--r--battery-widget/battery.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/battery-widget/battery.lua b/battery-widget/battery.lua
index b8e70bb..4cbc314 100644
--- a/battery-widget/battery.lua
+++ b/battery-widget/battery.lua
@@ -95,6 +95,8 @@ watch("acpi", 10,
batteryType = "battery-empty%s-symbolic"
if status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then
-- if 5 minutes have elapsed since the last warning
+ last_battery_check = time()
+
show_battery_warning()
end
elseif (charge >= 15 and charge < 40) then batteryType = "battery-caution%s-symbolic"