Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1c5858e6814dd7b5be7fd9d88966c8f0869e4282 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env /bin/sh

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r ${HOME}/.Xresources ] && xrdb ${HOME}/.Xresources

Xvnc ${DISPLAY} -geometry 1440x900 -depth 16 -dpi 100 -PasswordFile ${HOME}/.vnc/passwd &
sleep 2
xsetroot -solid grey
vncconfig -iconic &
xhost +
mutter --replace --sm-disable --display=${DISPLAY} &

Back to the top