mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00

This is the state of the files as of cdt-infra commit 497e7b2a643ff6ea12a56a21c17dd2d170e918c8 with the Readme updated for the new locations
11 lines
No EOL
332 B
Bash
11 lines
No EOL
332 B
Bash
#!/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 +
|
|
metacity --replace --sm-disable --display=${DISPLAY} & |