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)