move batpmu widget to match new layout

This commit is contained in:
Jörg Thalheim 2017-01-25 19:46:47 +01:00
parent 865fe5bf5d
commit 02c20087c9
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 3 additions and 4 deletions

View File

@ -54,8 +54,7 @@ Supported platforms: Linux (required tools: `sysfs`)
{dpm_perf_level}, {profile}, {engine_clock mhz}, {engine_clock khz}, {dpm_perf_level}, {profile}, {engine_clock mhz}, {engine_clock khz},
{memory_clock mhz}, {memory_clock khz}, {voltage v}, {voltage mv} {memory_clock mhz}, {memory_clock khz}, {voltage v}, {voltage mv}
vicious.contrib.batpmu **vicious.contrib.batpmu**
-
vicious.contrib.batproc vicious.contrib.batproc
- -

View File

@ -21,7 +21,7 @@ local string = {
-- Batpmu: provides state, charge and remaining time for a requested battery using PMU -- Batpmu: provides state, charge and remaining time for a requested battery using PMU
-- vicious.contrib.batpmu -- vicious.contrib.batpmu
local batpmu = {} local batpmu_linux = {}
-- {{{ Battery widget type -- {{{ Battery widget type
@ -76,4 +76,4 @@ local function worker(format, batid)
end end
-- }}} -- }}}
return setmetatable(batpmu, { __call = function(_, ...) return worker(...) end }) return setmetatable(batpmu_linux, { __call = function(_, ...) return worker(...) end })