X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/81b4ee282b24a89646f241c34699be9cc07cd50b..c477cc64fd484f9cc1e1c78e9b22e1f099e75838:/util/init.lua?ds=inline

diff --git a/util/init.lua b/util/init.lua
index 2f28b9a..ac3afec 100644
--- a/util/init.lua
+++ b/util/init.lua
@@ -210,4 +210,20 @@ function util.useless_gaps_resize(thatmuch)
     awful.layout.arrange(mouse.screen)
 end
 
+-- On the fly global border change
+function util.global_border_resize(thatmuch)
+    beautiful.global_border_width = tonumber(beautiful.global_border_width) + thatmuch
+    awful.layout.arrange(mouse.screen)
+end
+
+-- Check if an element exist on a table
+function util.element_in_table(element, tbl)
+    for _, i in pairs(tbl) do
+        if i == element then
+            return true
+        end
+    end
+    return false
+end
+
 return setmetatable(util, { __index = wrequire })