Reno is the second iteration of the AWMTK-powered AwesomeWM config.
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.
 
 
 
 

16 lines
478 B

local awful = require("awful")
local gears = require("gears")
-- Wallpaper applied from homedir
awful.screen.connect_for_each_screen(function(s)
gears.wallpaper.maximized(root_path.."/background.jpg")
end)
awful.rules.rules[1].properties.border_width = 2
awful.rules.rules[1].properties.border_color = "#787B80"
client.connect_signal("focus", function(c)
c.border_color = "#3584E4"
end)
client.connect_signal("unfocus", function(c)
c.border_color = "#787B80"
end)