1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| [supervisord]
| nodaemon=true
|
| [program:xvfb]
| command=/usr/bin/Xvfb :1 -screen 0 800x800x24
| autorestart=true
| user=artic
| priority=100
|
| [program:x11vnc]
| command=/usr/bin/x11vnc -xkb -noxrecord -noxfixes -display :1 -wait 5 -shared -permitfiletransfer -tightfilexfer -passwd **artic** -geometry 800x800
| user=artic
| autorestart=true
| priority=200
|
| [program:openbox]
| environment=HOME="/home/artic",DISPLAY=":1",USER="artic"
| command=/usr/bin/openbox-session
| user=artic
| autorestart=true
| priority=300
|
|