blob: af4895c322b00a9b53f2f0ea87d13883f461b4ec (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# TODO make nicer
XRESOURCES=$X11CONFIG/Xresources.$(hostname); [ -f "$XRESOURCES" ] || XRESOURCES=$X11CONFIG/Xresources
#xrdb -merge $X11CONFIG/Xresources -merge $X11CONFIG/Xresources.$(hostname) 2>/dev/null & xrdbpid=$!
xrdb -merge $XRESOURCES 2>/dev/null & xrdbpid=$!
redshift &
unclutter -noevents &
xkeyconf &
xvsync &
wait $xrdbpid # Wait for xrdb to ensure the WM starts using the correct DPI settings
|