aboutsummaryrefslogtreecommitdiff
path: root/wifi.lua
diff options
context:
space:
mode:
Diffstat (limited to 'wifi.lua')
-rw-r--r--wifi.lua13
1 files changed, 6 insertions, 7 deletions
diff --git a/wifi.lua b/wifi.lua
index 8a91c1e..c2b2034 100644
--- a/wifi.lua
+++ b/wifi.lua
@@ -20,11 +20,6 @@ module("vicious.wifi")
-- {{{ Wireless widget type
local function worker(format, iface)
- -- Get data from iwconfig (where available)
- local f = io.popen("iwconfig " .. iface)
- local iw = f:read("*all")
- f:close()
-
-- Default values
local winfo = {
["{ssid}"] = "N/A",
@@ -35,8 +30,12 @@ local function worker(format, iface)
["{sign}"] = 0
}
- -- Check if iwconfig wasn't found, can't be executed or the
- -- interface is not a wireless one
+ -- Get data from iwconfig where available
+ local f = io.popen("iwconfig " .. iface .. " 2>&1")
+ local iw = f:read("*all")
+ f:close()
+
+ -- iwconfig wasn't found, isn't executable, or non-wireless interface
if iw == nil or string.find(iw, "No such device") then
return winfo
end