mv batproc to match new layout

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

View File

@ -56,8 +56,7 @@ Supported platforms: Linux (required tools: `sysfs`)
**vicious.contrib.batpmu** **vicious.contrib.batpmu**
vicious.contrib.batproc **vicious.contrib.batproc**
-
vicious.contrib.dio vicious.contrib.dio
- provides I/O statistics for requested storage devices - provides I/O statistics for requested storage devices

View File

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