Skip to content

Commit 09687c3

Browse files
committed
Enabled RANDR features
Although resizing works, the X server does not report RANDR enabled
1 parent fbed19d commit 09687c3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

supervisord.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ pidfile=/tmp/supervisord.pid
1313
logfile=/tmp/supervisord.log
1414

1515
[program:xvfb]
16-
command=/usr/bin/Xvfb :99 -screen 0 1280x864x16 -ac -pn -noreset
16+
command=/usr/bin/Xvfb :99 -screen 0 1280x864x16 -ac -pn +extension GLX +extension RANDR +render -noreset
1717
autorestart=true
1818

1919
[program:x11vnc]
20-
command=x11vnc -shared -rfbport 5900 -display :99
20+
command=x11vnc -shared -rfbport 5900 -display :99 -xrandr resize
2121
autorestart=true
2222

2323
[program:novnc]

uninstall.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ if [[ $UID != 0 ]]; then
66
echo "sudo $0 $*"
77
exit 1
88
fi
9-
9+
10+
# Kill running sessions
11+
echo "Killing running sessions"
12+
echo
13+
/opt/c9vnc/c9vnc.sh -k
14+
1015
#Remove supervisord configuration
1116
echo "Removing supervisord configuration"
1217
echo

0 commit comments

Comments
 (0)