diff options
-rw-r--r-- | BatteryWidget/battery.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/BatteryWidget/battery.lua b/BatteryWidget/battery.lua index 3e9dd9a..4b2d069 100644 --- a/BatteryWidget/battery.lua +++ b/BatteryWidget/battery.lua @@ -20,8 +20,9 @@ function showWarningWidgetPopup() title = "Battery dying", timeout = 5, hover_timeout = 0.5, position = "bottom_right", - bg = "#ff1122", - width = 160, + bg = "#F06060", + fg = "#EEE9EF", + width = 200, }) end end @@ -52,4 +53,4 @@ batteryWidgetTimer:start() -- timer to refresh battery warning batteryWarningTimer = timer({ timeout = 50 }) batteryWarningTimer:connect_signal("timeout", function() showWarningWidgetPopup() end) -batteryWarningTimer:start()
\ No newline at end of file +batteryWarningTimer:start() |