mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-03-28 14:56:28 +01:00

- Fix links for cdt-infra - The cdt-infra git repo is now archived, so this commit updates the links to the current values. - Add new Docker related files to the gitattributes as text files - Update DEFAULT_BUFFER_SIZE for Java 21's value when building JNI, this also means the dll/exe need a rebuild - add a toolchains.xml since we use Java 21 toolchain, but most bundles are Java 17 still
11 lines
No EOL
332 B
Bash
Executable file
11 lines
No EOL
332 B
Bash
Executable file
#!/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} & |