├── .gitignore ├── Dockerfile ├── Dockerfile.xorg ├── Dockerfile.xvfb ├── README.md ├── noVNC ├── LICENSE.txt ├── README.md ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── novnc.install │ └── rules ├── docs │ ├── LICENSE.Apache-2.0 │ ├── LICENSE.BSD-2-Clause │ ├── LICENSE.BSD-3-Clause │ ├── LICENSE.GPL-3 │ ├── LICENSE.LGPL-3 │ ├── LICENSE.MPL-2.0 │ ├── LICENSE.OFL-1.1 │ ├── LICENSE.zlib │ ├── VERSION │ ├── flash_policy.txt │ ├── links │ ├── notes │ ├── packaging.txt │ ├── release.txt │ ├── rfb_notes │ ├── rfbproto-3.3.pdf │ ├── rfbproto-3.7.pdf │ └── rfbproto-3.8.pdf ├── favicon.ico ├── images │ ├── alt.png │ ├── clipboard.png │ ├── connect.png │ ├── ctrl.png │ ├── ctrlaltdel.png │ ├── disconnect.png │ ├── drag.png │ ├── esc.png │ ├── favicon.ico │ ├── favicon.png │ ├── keyboard.png │ ├── mouse_left.png │ ├── mouse_middle.png │ ├── mouse_none.png │ ├── mouse_right.png │ ├── power.png │ ├── screen_320x460.png │ ├── screen_57x57.png │ ├── screen_700x700.png │ ├── settings.png │ ├── showextrakeys.png │ └── tab.png ├── include │ ├── Orbitron700.ttf │ ├── Orbitron700.woff │ ├── base.css │ ├── base64.js │ ├── black.css │ ├── blue.css │ ├── chrome-app │ │ └── tcp-client.js │ ├── des.js │ ├── display.js │ ├── input.js │ ├── jsunzip.js │ ├── keyboard.js │ ├── keysym.js │ ├── keysymdef.js │ ├── logo.js │ ├── playback.js │ ├── rfb.js │ ├── ui.js │ ├── util.js │ ├── web-socket-js │ │ ├── README.txt │ │ ├── WebSocketMain.swf │ │ ├── swfobject.js │ │ └── web_socket.js │ ├── websock.js │ └── webutil.js ├── index.html ├── self.pem ├── tests │ ├── arrays.html │ ├── arrays.js │ ├── base64.html │ ├── base64.js │ ├── browser.js │ ├── canvas.html │ ├── cursor.html │ ├── face.png │ ├── face.png.js │ ├── input.html │ ├── keyboard-tests.html │ ├── run_from_console.casper.js │ ├── run_from_console.js │ ├── run_from_console.zombie.js │ ├── stats.js │ ├── test.helper.js │ ├── test.keyboard.js │ ├── viewport.css │ ├── viewport.html │ ├── vnc_perf.html │ └── vnc_playback.html ├── utils │ ├── Makefile │ ├── README.md │ ├── img2js.py │ ├── json2graph.py │ ├── launch.sh │ ├── nova-novncproxy │ ├── parse.js │ ├── rebind │ ├── rebind.c │ ├── u2x11 │ ├── web.py │ ├── websocket.py │ ├── websocket.pyc │ ├── websockify │ ├── websockify.py │ └── wsproxy.py ├── vnc.html └── vnc_auto.html ├── openbox-config └── .config │ ├── gtk-2.0 │ └── gtkfilechooser.ini │ ├── gtk-3.0 │ └── settings.ini │ ├── libfm │ ├── dir-settings.conf │ └── libfm.conf │ ├── libreoffice │ └── 4 │ │ └── user │ │ ├── autotext │ │ └── mytexts.bau │ │ ├── basic │ │ ├── Standard │ │ │ ├── Module1.xba │ │ │ ├── dialog.xlb │ │ │ └── script.xlb │ │ ├── dialog.xlc │ │ └── script.xlc │ │ ├── config │ │ ├── arrowhd.soe │ │ ├── autotbl.fmt │ │ ├── classic.sog │ │ ├── cmyk.soc │ │ ├── gallery.soc │ │ ├── hatching.soh │ │ ├── html.soc │ │ ├── javasettings_Linux_X86_64.xml │ │ ├── libreoffice.soc │ │ ├── modern.sog │ │ ├── palette.soc │ │ ├── scribus.soc │ │ ├── standard.sob │ │ ├── standard.soc │ │ ├── standard.sod │ │ ├── standard.soe │ │ ├── standard.sog │ │ ├── standard.soh │ │ ├── styles.sod │ │ ├── tango.soc │ │ └── web.soc │ │ ├── database │ │ ├── biblio.odb │ │ ├── biblio │ │ │ ├── biblio.dbf │ │ │ └── biblio.dbt │ │ └── evolocal.odb │ │ ├── extensions │ │ ├── buildid │ │ ├── bundled │ │ │ ├── lastsynchronized │ │ │ └── registry │ │ │ │ ├── com.sun.star.comp.deployment.configuration.PackageRegistryBackend │ │ │ │ └── backenddb.xml │ │ │ │ └── com.sun.star.comp.deployment.help.PackageRegistryBackend │ │ │ │ └── backenddb.xml │ │ ├── shared │ │ │ ├── lastsynchronized │ │ │ └── registry │ │ │ │ ├── com.sun.star.comp.deployment.configuration.PackageRegistryBackend │ │ │ │ └── backenddb.xml │ │ │ │ └── com.sun.star.comp.deployment.help.PackageRegistryBackend │ │ │ │ └── backenddb.xml │ │ └── tmp │ │ │ └── registry │ │ │ ├── com.sun.star.comp.deployment.configuration.PackageRegistryBackend │ │ │ └── backenddb.xml │ │ │ └── com.sun.star.comp.deployment.help.PackageRegistryBackend │ │ │ └── backenddb.xml │ │ ├── gallery │ │ ├── sg30.sdv │ │ └── sg30.thm │ │ ├── psprint │ │ └── pspfontcache │ │ ├── registrymodifications.xcu │ │ └── uno_packages │ │ └── cache │ │ ├── log.txt │ │ └── registry │ │ ├── com.sun.star.comp.deployment.configuration.PackageRegistryBackend │ │ └── backenddb.xml │ │ └── com.sun.star.comp.deployment.help.PackageRegistryBackend │ │ └── backenddb.xml │ ├── lxpanel │ └── LXDE │ │ ├── config │ │ └── panels │ │ └── panel │ ├── lxsession │ └── LXDE │ │ ├── autostart │ │ └── desktop.conf │ ├── lxterminal │ └── lxterminal.conf │ ├── openbox │ └── lxde-rc.xml │ ├── pcmanfm │ └── LXDE │ │ ├── desktop-items-0.conf │ │ └── pcmanfm.conf │ └── xarchiver │ └── xarchiverrc ├── run ├── startup.sh ├── supervisord.conf.xorg ├── supervisord.conf.xvfb └── xorg.conf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.xorg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/Dockerfile.xorg -------------------------------------------------------------------------------- /Dockerfile.xvfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/Dockerfile.xvfb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/README.md -------------------------------------------------------------------------------- /noVNC/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/LICENSE.txt -------------------------------------------------------------------------------- /noVNC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/README.md -------------------------------------------------------------------------------- /noVNC/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/debian/changelog -------------------------------------------------------------------------------- /noVNC/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /noVNC/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/debian/control -------------------------------------------------------------------------------- /noVNC/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/debian/copyright -------------------------------------------------------------------------------- /noVNC/debian/novnc.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/debian/novnc.install -------------------------------------------------------------------------------- /noVNC/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/debian/rules -------------------------------------------------------------------------------- /noVNC/docs/LICENSE.Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/LICENSE.Apache-2.0 -------------------------------------------------------------------------------- /noVNC/docs/LICENSE.BSD-2-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/LICENSE.BSD-2-Clause -------------------------------------------------------------------------------- /noVNC/docs/LICENSE.BSD-3-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/LICENSE.BSD-3-Clause -------------------------------------------------------------------------------- /noVNC/docs/LICENSE.GPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/LICENSE.GPL-3 -------------------------------------------------------------------------------- /noVNC/docs/LICENSE.LGPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/LICENSE.LGPL-3 -------------------------------------------------------------------------------- /noVNC/docs/LICENSE.MPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/LICENSE.MPL-2.0 -------------------------------------------------------------------------------- /noVNC/docs/LICENSE.OFL-1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/LICENSE.OFL-1.1 -------------------------------------------------------------------------------- /noVNC/docs/LICENSE.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/LICENSE.zlib -------------------------------------------------------------------------------- /noVNC/docs/VERSION: -------------------------------------------------------------------------------- 1 | 0.4 2 | -------------------------------------------------------------------------------- /noVNC/docs/flash_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/flash_policy.txt -------------------------------------------------------------------------------- /noVNC/docs/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/links -------------------------------------------------------------------------------- /noVNC/docs/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/notes -------------------------------------------------------------------------------- /noVNC/docs/packaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/packaging.txt -------------------------------------------------------------------------------- /noVNC/docs/release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/release.txt -------------------------------------------------------------------------------- /noVNC/docs/rfb_notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/rfb_notes -------------------------------------------------------------------------------- /noVNC/docs/rfbproto-3.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/rfbproto-3.3.pdf -------------------------------------------------------------------------------- /noVNC/docs/rfbproto-3.7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/rfbproto-3.7.pdf -------------------------------------------------------------------------------- /noVNC/docs/rfbproto-3.8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/docs/rfbproto-3.8.pdf -------------------------------------------------------------------------------- /noVNC/favicon.ico: -------------------------------------------------------------------------------- 1 | images/favicon.ico -------------------------------------------------------------------------------- /noVNC/images/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/alt.png -------------------------------------------------------------------------------- /noVNC/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/clipboard.png -------------------------------------------------------------------------------- /noVNC/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/connect.png -------------------------------------------------------------------------------- /noVNC/images/ctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/ctrl.png -------------------------------------------------------------------------------- /noVNC/images/ctrlaltdel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/ctrlaltdel.png -------------------------------------------------------------------------------- /noVNC/images/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/disconnect.png -------------------------------------------------------------------------------- /noVNC/images/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/drag.png -------------------------------------------------------------------------------- /noVNC/images/esc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/esc.png -------------------------------------------------------------------------------- /noVNC/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/favicon.ico -------------------------------------------------------------------------------- /noVNC/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/favicon.png -------------------------------------------------------------------------------- /noVNC/images/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/keyboard.png -------------------------------------------------------------------------------- /noVNC/images/mouse_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/mouse_left.png -------------------------------------------------------------------------------- /noVNC/images/mouse_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/mouse_middle.png -------------------------------------------------------------------------------- /noVNC/images/mouse_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/mouse_none.png -------------------------------------------------------------------------------- /noVNC/images/mouse_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/mouse_right.png -------------------------------------------------------------------------------- /noVNC/images/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/power.png -------------------------------------------------------------------------------- /noVNC/images/screen_320x460.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/screen_320x460.png -------------------------------------------------------------------------------- /noVNC/images/screen_57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/screen_57x57.png -------------------------------------------------------------------------------- /noVNC/images/screen_700x700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/screen_700x700.png -------------------------------------------------------------------------------- /noVNC/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/settings.png -------------------------------------------------------------------------------- /noVNC/images/showextrakeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/showextrakeys.png -------------------------------------------------------------------------------- /noVNC/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/images/tab.png -------------------------------------------------------------------------------- /noVNC/include/Orbitron700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/Orbitron700.ttf -------------------------------------------------------------------------------- /noVNC/include/Orbitron700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/Orbitron700.woff -------------------------------------------------------------------------------- /noVNC/include/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/base.css -------------------------------------------------------------------------------- /noVNC/include/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/base64.js -------------------------------------------------------------------------------- /noVNC/include/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/black.css -------------------------------------------------------------------------------- /noVNC/include/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/blue.css -------------------------------------------------------------------------------- /noVNC/include/chrome-app/tcp-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/chrome-app/tcp-client.js -------------------------------------------------------------------------------- /noVNC/include/des.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/des.js -------------------------------------------------------------------------------- /noVNC/include/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/display.js -------------------------------------------------------------------------------- /noVNC/include/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/input.js -------------------------------------------------------------------------------- /noVNC/include/jsunzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/jsunzip.js -------------------------------------------------------------------------------- /noVNC/include/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/keyboard.js -------------------------------------------------------------------------------- /noVNC/include/keysym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/keysym.js -------------------------------------------------------------------------------- /noVNC/include/keysymdef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/keysymdef.js -------------------------------------------------------------------------------- /noVNC/include/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/logo.js -------------------------------------------------------------------------------- /noVNC/include/playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/playback.js -------------------------------------------------------------------------------- /noVNC/include/rfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/rfb.js -------------------------------------------------------------------------------- /noVNC/include/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/ui.js -------------------------------------------------------------------------------- /noVNC/include/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/util.js -------------------------------------------------------------------------------- /noVNC/include/web-socket-js/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/web-socket-js/README.txt -------------------------------------------------------------------------------- /noVNC/include/web-socket-js/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/web-socket-js/WebSocketMain.swf -------------------------------------------------------------------------------- /noVNC/include/web-socket-js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/web-socket-js/swfobject.js -------------------------------------------------------------------------------- /noVNC/include/web-socket-js/web_socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/web-socket-js/web_socket.js -------------------------------------------------------------------------------- /noVNC/include/websock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/websock.js -------------------------------------------------------------------------------- /noVNC/include/webutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/include/webutil.js -------------------------------------------------------------------------------- /noVNC/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/index.html -------------------------------------------------------------------------------- /noVNC/self.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/self.pem -------------------------------------------------------------------------------- /noVNC/tests/arrays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/arrays.html -------------------------------------------------------------------------------- /noVNC/tests/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/arrays.js -------------------------------------------------------------------------------- /noVNC/tests/base64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/base64.html -------------------------------------------------------------------------------- /noVNC/tests/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/base64.js -------------------------------------------------------------------------------- /noVNC/tests/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/browser.js -------------------------------------------------------------------------------- /noVNC/tests/canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/canvas.html -------------------------------------------------------------------------------- /noVNC/tests/cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/cursor.html -------------------------------------------------------------------------------- /noVNC/tests/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/face.png -------------------------------------------------------------------------------- /noVNC/tests/face.png.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/face.png.js -------------------------------------------------------------------------------- /noVNC/tests/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/input.html -------------------------------------------------------------------------------- /noVNC/tests/keyboard-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/keyboard-tests.html -------------------------------------------------------------------------------- /noVNC/tests/run_from_console.casper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/run_from_console.casper.js -------------------------------------------------------------------------------- /noVNC/tests/run_from_console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/run_from_console.js -------------------------------------------------------------------------------- /noVNC/tests/run_from_console.zombie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/run_from_console.zombie.js -------------------------------------------------------------------------------- /noVNC/tests/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/stats.js -------------------------------------------------------------------------------- /noVNC/tests/test.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/test.helper.js -------------------------------------------------------------------------------- /noVNC/tests/test.keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/test.keyboard.js -------------------------------------------------------------------------------- /noVNC/tests/viewport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/viewport.css -------------------------------------------------------------------------------- /noVNC/tests/viewport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/viewport.html -------------------------------------------------------------------------------- /noVNC/tests/vnc_perf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/vnc_perf.html -------------------------------------------------------------------------------- /noVNC/tests/vnc_playback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/tests/vnc_playback.html -------------------------------------------------------------------------------- /noVNC/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/Makefile -------------------------------------------------------------------------------- /noVNC/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/README.md -------------------------------------------------------------------------------- /noVNC/utils/img2js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/img2js.py -------------------------------------------------------------------------------- /noVNC/utils/json2graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/json2graph.py -------------------------------------------------------------------------------- /noVNC/utils/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/launch.sh -------------------------------------------------------------------------------- /noVNC/utils/nova-novncproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/nova-novncproxy -------------------------------------------------------------------------------- /noVNC/utils/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/parse.js -------------------------------------------------------------------------------- /noVNC/utils/rebind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/rebind -------------------------------------------------------------------------------- /noVNC/utils/rebind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/rebind.c -------------------------------------------------------------------------------- /noVNC/utils/u2x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/u2x11 -------------------------------------------------------------------------------- /noVNC/utils/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/web.py -------------------------------------------------------------------------------- /noVNC/utils/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/websocket.py -------------------------------------------------------------------------------- /noVNC/utils/websocket.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/websocket.pyc -------------------------------------------------------------------------------- /noVNC/utils/websockify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/utils/websockify -------------------------------------------------------------------------------- /noVNC/utils/websockify.py: -------------------------------------------------------------------------------- 1 | websockify -------------------------------------------------------------------------------- /noVNC/utils/wsproxy.py: -------------------------------------------------------------------------------- 1 | websockify -------------------------------------------------------------------------------- /noVNC/vnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/vnc.html -------------------------------------------------------------------------------- /noVNC/vnc_auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/noVNC/vnc_auto.html -------------------------------------------------------------------------------- /openbox-config/.config/gtk-2.0/gtkfilechooser.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/gtk-2.0/gtkfilechooser.ini -------------------------------------------------------------------------------- /openbox-config/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /openbox-config/.config/libfm/dir-settings.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openbox-config/.config/libfm/libfm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libfm/libfm.conf -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/autotext/mytexts.bau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/autotext/mytexts.bau -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/basic/Standard/Module1.xba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/basic/Standard/Module1.xba -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/basic/Standard/dialog.xlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/basic/Standard/dialog.xlb -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/basic/Standard/script.xlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/basic/Standard/script.xlb -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/basic/dialog.xlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/basic/dialog.xlc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/basic/script.xlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/basic/script.xlc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/arrowhd.soe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/arrowhd.soe -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/autotbl.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/autotbl.fmt -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/classic.sog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/classic.sog -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/cmyk.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/cmyk.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/gallery.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/gallery.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/hatching.soh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/hatching.soh -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/html.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/html.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/javasettings_Linux_X86_64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/javasettings_Linux_X86_64.xml -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/libreoffice.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/libreoffice.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/modern.sog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/modern.sog -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/palette.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/palette.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/scribus.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/scribus.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/standard.sob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/standard.sob -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/standard.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/standard.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/standard.sod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/standard.sod -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/standard.soe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/standard.soe -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/standard.sog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/standard.sog -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/standard.soh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/standard.soh -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/styles.sod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/styles.sod -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/tango.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/tango.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/config/web.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/config/web.soc -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/database/biblio.odb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/database/biblio.odb -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/database/biblio/biblio.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/database/biblio/biblio.dbf -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/database/biblio/biblio.dbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/database/biblio/biblio.dbt -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/database/evolocal.odb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/database/evolocal.odb -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/buildid: -------------------------------------------------------------------------------- 1 | 420m0(Build:3) -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/bundled/lastsynchronized: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/shared/lastsynchronized: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/gallery/sg30.sdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/gallery/sg30.sdv -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/gallery/sg30.thm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/gallery/sg30.thm -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/psprint/pspfontcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/psprint/pspfontcache -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/registrymodifications.xcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/registrymodifications.xcu -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/uno_packages/cache/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/uno_packages/cache/log.txt -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /openbox-config/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml -------------------------------------------------------------------------------- /openbox-config/.config/lxpanel/LXDE/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/lxpanel/LXDE/config -------------------------------------------------------------------------------- /openbox-config/.config/lxpanel/LXDE/panels/panel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/lxpanel/LXDE/panels/panel -------------------------------------------------------------------------------- /openbox-config/.config/lxsession/LXDE/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/lxsession/LXDE/autostart -------------------------------------------------------------------------------- /openbox-config/.config/lxsession/LXDE/desktop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/lxsession/LXDE/desktop.conf -------------------------------------------------------------------------------- /openbox-config/.config/lxterminal/lxterminal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/lxterminal/lxterminal.conf -------------------------------------------------------------------------------- /openbox-config/.config/openbox/lxde-rc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/openbox/lxde-rc.xml -------------------------------------------------------------------------------- /openbox-config/.config/pcmanfm/LXDE/desktop-items-0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/pcmanfm/LXDE/desktop-items-0.conf -------------------------------------------------------------------------------- /openbox-config/.config/pcmanfm/LXDE/pcmanfm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/pcmanfm/LXDE/pcmanfm.conf -------------------------------------------------------------------------------- /openbox-config/.config/xarchiver/xarchiverrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/openbox-config/.config/xarchiver/xarchiverrc -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/run -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/startup.sh -------------------------------------------------------------------------------- /supervisord.conf.xorg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/supervisord.conf.xorg -------------------------------------------------------------------------------- /supervisord.conf.xvfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/supervisord.conf.xvfb -------------------------------------------------------------------------------- /xorg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccahill/docker-eclipse-novnc/HEAD/xorg.conf --------------------------------------------------------------------------------