move wifi widget to match new layout
This commit is contained in:
parent
54baa996c4
commit
785fefc13a
|
@ -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 })
|
|
@ -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 })
|
Loading…
Reference in New Issue