blob: 2821da396393b76d7a65d1c04750be94c5647250 (
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.spawn("sleep 1 && awsetbg " .. homedir .. "/themes/backgrounds/background.jpg")
|