blob: 47d5e277de6e1f70f08c60184c8dbca66e6fdfa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--
-- A simpler awesome configuration
--
-- 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")
|