blob: 667c768a331c1733e9c75541b98492b030cac356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
sys="/etc/xdg/awesome/rc.lua"
con="$HOME/.config/awesome/rc.lua"
xdg="$XDG_CONFIG_DIR/awesome/rc.lua"
cfg="$sys"
[ -f "$con" ] && cfg="$con"
[ "$XDG_CONFIG_DIR" -a -f "$xdg"] && cfg="$xdg"
sysXres=/etc/X11/Xresources
[ -f "$sysXres" ] && xrdb -merge "$sysXres"
exec awesome --config "$cfg"
|