X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/fd1ec3b943c348c811770c63c3b0ac7801088d05..60febfc4dd6018ec8ead920f173b404412316473:/util/init.lua?ds=sidebyside

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 })