diff options
author | Pavel Makhov <streetturtle@users.noreply.github.com> | 2015-12-25 23:28:08 +0100 |
---|---|---|
committer | Pavel Makhov <streetturtle@users.noreply.github.com> | 2015-12-25 23:28:08 +0100 |
commit | 68c48c0a73bf1b6cba17d7ee7db8088bd28c5ec7 (patch) | |
tree | b481badf8babdcc6d59ae4eecdc95652276eac41 /BatteryWidget | |
parent | fa9e92be981230517f19fea2a2ed2c9a1d228d29 (diff) |
Update battery.lua
Diffstat (limited to 'BatteryWidget')
-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() |