X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/fd1ec3b943c348c811770c63c3b0ac7801088d05..e1450f8828c1be4e290cec0a34538ebe6cb86b50:/util/init.lua 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 })