X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/b371de56f8bf19f982a4f6887f2110444b590f74..a659d1a4bc99d27a1746985e13f68efc3dd256c7:/widgets/borderbox.lua?ds=sidebyside

diff --git a/widgets/borderbox.lua b/widgets/borderbox.lua
index cce8517..149b835 100644
--- a/widgets/borderbox.lua
+++ b/widgets/borderbox.lua
@@ -7,8 +7,7 @@
                                                   
 --]]
 
-local wibox        = require("awful.wibox")
-
+local wibox = require("awful.wibox")
 local setmetatable = setmetatable
 
 -- Creates a thin wibox at a position relative to another wibox
@@ -16,14 +15,11 @@ local setmetatable = setmetatable
 local borderbox = {}
 
 local function worker(relbox, s, args)
-    local where = args.position or 'top'
-    local color = args.color or '#FFFFFF'
-    local size = args.size or 1
-    local box = nil
-    local wiboxarg = {
-        position = nil,
-        bg = color
-    }
+    local where    = args.position or 'top'
+    local color    = args.color or '#FFFFFF'
+    local size     = args.size or 1
+    local box      = nil
+    local wiboxarg = { position = nil, bg = color }
 
     if where == 'top'
     then