move net widget to match new layout

This commit is contained in:
Jörg Thalheim 2017-01-25 19:54:04 +01:00
parent 9cb3eab18f
commit 6b448fd791
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 3 additions and 4 deletions

View File

@ -77,8 +77,7 @@ Provides I/O statistics for requested storage devices
vicious.contrib.netcfg
-
vicious.contrib.net
-
**vicious.contrib.net**
vicious.contrib.openweather
- provides weather information for a requested city

View File

@ -18,7 +18,7 @@ local helpers = require("vicious.helpers")
-- Net: provides usage statistics for all network interfaces
-- vicious.contrib.net
local net = {}
local net_linux = {}
-- Initialise function tables
@ -136,4 +136,4 @@ local function worker(format, tignorelist)
end
-- }}}
return setmetatable(net, { __call = function(_, ...) return worker(...) end })
return setmetatable(net_linux, { __call = function(_, ...) return worker(...) end })