]>
git.madduck.net Git - etc/awesome.git/blobdiff - widget/contrib/tp_smapi.lua
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
local naughty = require("naughty")
local wibox = require("wibox")
local string = string
local naughty = require("naughty")
local wibox = require("wibox")
local string = string
-- ThinkPad battery infos and widget creator
-- http://www.thinkwiki.org/wiki/Tp_smapi
-- ThinkPad battery infos and widget creator
-- http://www.thinkwiki.org/wiki/Tp_smapi
local function factory(apipath)
local tp_smapi = {
local function factory(apipath)
local tp_smapi = {
- path = apipath or "/sys/devices/platform/tp_ smapi"
+ path = apipath or "/sys/devices/platform/smapi"
}
function tp_smapi.get(batid, feature)
}
function tp_smapi.get(batid, feature)
tp_smapi.notification = naughty.notify {
title = string.format("%s: %s %s (%s)", batid, mfgr, model, chem),
text = msg,
tp_smapi.notification = naughty.notify {
title = string.format("%s: %s %s (%s)", batid, mfgr, model, chem),
text = msg,
- timeout = seconds or 0,
+ timeout = type(seconds) == "number" and seconds or 0,
screen = scr or focused()
}
end
screen = scr or focused()
}
end