Created
September 7, 2016 02:25
-
-
Save cassinaj/c89836bdb28b0b87e71c6ba35189186b to your computer and use it in GitHub Desktop.
Awesome battery widget
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This function returns a formatted string with the current battery status. It | |
-- can be used to populate a text widget in the awesome window manager. Based | |
-- on the "Gigamo Battery Widget" found in the wiki at awesome.naquadah.org | |
local naughty = require("naughty") | |
local beautiful = require("beautiful") | |
function readBatFile(adapter, ...) | |
local basepath = "/sys/class/power_supply/"..adapter.."/" | |
for i, name in pairs({...}) do | |
file = io.open(basepath..name, "r") | |
if file then | |
local str = file:read() | |
file:close() | |
return str | |
end | |
end | |
end | |
function batteryInfo(adapter) | |
local fh = io.open("/sys/class/power_supply/"..adapter.."/present", "r") | |
if fh == nil then | |
battery = "A/C" | |
icon = "" | |
percent = "" | |
else | |
local cur = readBatFile(adapter, "charge_now", "energy_now") | |
local cap = readBatFile(adapter, "charge_full", "energy_full") | |
local sta = readBatFile(adapter, "status") | |
battery = math.floor(cur * 100 / cap) | |
if sta:match("Charging") then | |
icon = "⚡" | |
percent = "%" | |
elseif sta:match("Discharging") then | |
icon = "" | |
percent = "%" | |
if tonumber(battery) < 15 then | |
naughty.notify({ title = "Battery Warning" | |
, text = "Battery low!".." "..battery..percent.." ".."left!" | |
, timeout = 5 | |
, position = "top_right" | |
, fg = beautiful.fg_focus | |
, bg = beautiful.bg_focus | |
}) | |
end | |
else | |
-- If we are neither charging nor discharging, assume that we are on A/C | |
battery = "A/C" | |
icon = "" | |
percent = "" | |
end | |
end | |
return " "..icon..battery..percent.." " | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment