blob: 0910bca918cdf86df42aaee5723a79cf812f7f86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- Environment variables
homedir = os.getenv("HOME")
configdir = homedir .. "/.config/awesome"
-- Include default distro configuration
dofile("/etc/xdg/awesome/rc.lua")
dofile(configdir .. "/keys.lua")
-- Custom changes
terminal = "terminal"
-- Background
awful.util.spawn_with_shell("sleep 1 && awsetbg " .. homedir .. "/themes/backgrounds/background.jpg")
|