summaryrefslogtreecommitdiff
path: root/BatteryWidget/battery.lua
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2015-07-13 18:26:39 +0200
committerstreetturtle <streetturtle@gmail.com>2015-07-13 18:26:39 +0200
commita02279a9f2e18b0a60add45669000749d38a3020 (patch)
tree7dbbd2e380ff3285497aada9fd4ae99b6fad2e5b /BatteryWidget/battery.lua
parent336a88219b9f812382738a0342757c32fb954688 (diff)
Moved to special folder
Diffstat (limited to 'BatteryWidget/battery.lua')
-rw-r--r--BatteryWidget/battery.lua45
1 files changed, 45 insertions, 0 deletions
diff --git a/BatteryWidget/battery.lua b/BatteryWidget/battery.lua
new file mode 100644
index 0000000..09e0ed6
--- /dev/null
+++ b/BatteryWidget/battery.lua
@@ -0,0 +1,45 @@
+local wibox = require("wibox")
+local awful = require("awful")
+local naughty = require("naughty")
+
+function showBatteryWidgetPopup()
+ local save_offset = offset
+ naughty.notify({
+ text = awful.util.pread("acpi | cut -d, -f 2,3"),
+ title = "Battery status",
+ timeout = 2, hover_timeout = 0.5,
+ width = 160,
+ })
+end
+
+function showBatteryWidgetIcon()
+ local charge = tonumber(awful.util.pread("acpi | cut -d, -f 2 | egrep -o '[0-9]{1,3}'"))
+ local batteryType
+
+ if (charge >= 0 and charge < 20) then batteryType=20
+ elseif (charge >= 20 and charge < 40) then batteryType=40
+ elseif (charge >= 40 and charge < 60) then batteryType=60
+ elseif (charge >= 60 and charge < 80) then batteryType=80
+ elseif (charge >= 80 and charge < 100) then batteryType=100
+ end
+
+ batteryIcon:set_image("/home/pashik/.config/awesome/battery-icons/" .. batteryType .. ".png")
+end
+
+batteryIcon = wibox.widget.imagebox()
+showBatteryWidgetIcon()
+batteryIcon:connect_signal("mouse::enter",
+ function()
+ showBatteryWidgetPopup()
+ end
+)
+
+-- timer to refresh battery icon
+batteryWidgetTimer = timer({ timeout = 5 })
+batteryWidgetTimer:connect_signal("timeout",
+ function()
+ showBatteryWidgetIcon()
+ end
+)
+
+batteryWidgetTimer:start() \ No newline at end of file