blob: 9560f3a0756a34c7117a24de3b32c8384ef3d9cb (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
xrdb -merge $X11CONFIG/Xresources -merge $X11CONFIG/Xresources.$(hostname) 2>/dev/null & xrdbpid=$!
redshift &
unclutter -noevents &
xkeyconf &
xvsync &
wait $xrdbpid # Wait for xrdb to ensure the WM starts using the correct DPI settings
|