X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/ca0bac403f4c52300454fd26e46a5deb570cfda6..d3b5b5a94d974e678d10a8670886e17a354eede5:/widget/contrib/tp_smapi.lua?ds=inline diff --git a/widget/contrib/tp_smapi.lua b/widget/contrib/tp_smapi.lua index 7192990..b8acbe2 100644 --- a/widget/contrib/tp_smapi.lua +++ b/widget/contrib/tp_smapi.lua @@ -12,6 +12,7 @@ local gears = require("gears") local naughty = require("naughty") local wibox = require("wibox") local string = string +local type = type -- ThinkPad battery infos and widget creator -- http://www.thinkwiki.org/wiki/Tp_smapi @@ -19,7 +20,7 @@ local string = string 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) @@ -73,7 +74,7 @@ local function factory(apipath) 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