Add initial dotfiles

This commit is contained in:
2021-12-15 12:59:29 +00:00
parent 61ba238a88
commit 2aa8f732d6
448 changed files with 29562 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
local awful = require("awful")
local shapes = require("extras.nice.shapes")
function update_titlebars(c, init)
init = init or false
-- Rounded Corners
if not c.fullscreen and not c.maximized then
c.shape = shapes.rounded_rect {
tl = 9,
tr = 9,
bl = 9,
br = 9
}
else
c.shape = nil
end
end