blob: ed92fc6cb15e80a30ba4a9443585bafe30aa2f85 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
xvsync &
[ "`hostname`" = "G3N2" ] && [ -f ~/.config/x11/Xresources ] && xrdb -merge -I$HOME ~/.config/x11/Xresources &
#[ "`hostname`" = "openbsdx230" ] && bdstpscroll &
seasonalwallpaper &
capsmap &
unclutter -noevents &
xset r rate 250 50 &
# Allow starting graphical applications as root
doas xauth -f /root/.Xauthority add $(xauth list $DISPLAY) &
|