AwesomeWM configuration files
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local gears = require('gears') |
|
|
|
-- Create rounded corners for windows |
|
client.connect_signal("manage", function (c) |
|
c.shape = function(cr,w,h) |
|
gears.shape.rounded_rect(cr,w,h,4) |
|
end |
|
end) |