X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/81b4ee282b24a89646f241c34699be9cc07cd50b..7f203ab08d80c6e7b663f184d1b34fd6d87564b3:/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 })