]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

#150 fix 2
authorcopycat-killer <dada@archlinux.info>
Wed, 11 Nov 2015 17:52:40 +0000 (18:52 +0100)
committercopycat-killer <dada@archlinux.info>
Wed, 11 Nov 2015 17:52:40 +0000 (18:52 +0100)
widgets/net.lua

index 702937cc7938850f4bcc4fe8fb8503ac305c2a91..af823a824e1eaa48e8e5bd05025365c7d46f261a 100644 (file)
@@ -35,14 +35,13 @@ local function worker(args)
         end
     end
 
-    local args = args or {}
-    local timeout = args.timeout or 2
-    local units = args.units or 1024 --kb
-    local notify = args.notify or "on"
-    local screen = args.screen or 1
+    local args     = args or {}
+    local timeout  = args.timeout or 2
+    local units    = args.units or 1024 --kb
+    local notify   = args.notify or "on"
+    local screen   = args.screen or 1
     local settings = args.settings or function() end
-
-    iface = args.iface or net.get_device()
+    local iface    = args.iface or net.get_device()
 
     net.widget = wibox.widget.textbox('')