move wifi widget to match new layout

This commit is contained in:
mutlusun 2017-01-25 17:56:50 +01:00 committed by Jörg Thalheim
parent 54baa996c4
commit 785fefc13a
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ local string = {
-- Wifi: provides wireless information for a requested interface -- Wifi: provides wireless information for a requested interface
-- vicious.widgets.wifi -- vicious.widgets.wifi
local wifi = {} local wifi_linux = {}
-- {{{ Variable definitions -- {{{ Variable definitions
@ -89,4 +89,4 @@ local function worker(format, warg)
end end
-- }}} -- }}}
return setmetatable(wifi, { __call = function(_, ...) return worker(...) end }) return setmetatable(wifi_linux, { __call = function(_, ...) return worker(...) end })

View File

@ -20,7 +20,7 @@ local string = {
-- Wifiiw: provides wireless information for a requested interface using iw instead of deprecated iwconfig -- Wifiiw: provides wireless information for a requested interface using iw instead of deprecated iwconfig
-- vicious.widgets.wifiiw -- vicious.widgets.wifiiw
local wifiiw = {} local wifiiw_linux = {}
-- {{{ Wireless widget type -- {{{ Wireless widget type
@ -63,4 +63,4 @@ local function worker(format, warg)
end end
-- }}} -- }}}
return setmetatable(wifiiw, { __call = function(_, ...) return worker(...) end }) return setmetatable(wifiiw_linux, { __call = function(_, ...) return worker(...) end })