mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
11 lines
332 B
Bash
11 lines
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} &
|