blob: 9384eba8353eb43f69884fb682320cc3e0c74716 (
plain)
1
2
3
4
5
6
|
## vim:ft=zsh
if [[ -z $SSH_CONNECTION && ! -e /tmp/.x-started ]] {
touch /tmp/.x-started
unsetopt bg_nice
xinit /home/derf/.xinitrc -- /etc/X11/xinit/xserverrc :0 -auth $(mktemp --tmpdir serverauth.XXXXXXXXXX) &! exit
}
|