From 09b31687ccab05b9d1b0c743388ed65e554343a9 Mon Sep 17 00:00:00 2001 From: Craig Date: Tue, 21 Apr 2020 20:00:51 +0000 Subject: [PATCH] added docker popcorn time (wip) --- .docker/files/popcorn/Dockerfile | 15 + .docker/files/popcorn/openbox.xml | 763 +++++++++++++++++++++++++ .docker/files/popcorn/supervisord.conf | 11 + 3 files changed, 789 insertions(+) create mode 100644 .docker/files/popcorn/Dockerfile create mode 100644 .docker/files/popcorn/openbox.xml create mode 100644 .docker/files/popcorn/supervisord.conf diff --git a/.docker/files/popcorn/Dockerfile b/.docker/files/popcorn/Dockerfile new file mode 100644 index 0000000..18f342b --- /dev/null +++ b/.docker/files/popcorn/Dockerfile @@ -0,0 +1,15 @@ +FROM nurdism/neko:openbox + +# +# install popcorn time +RUN set -eux; apt-get update; \ + apt-get install -y --no-install-recommends ; \ + # + # clean up + apt-get clean -y; \ + rm -rf /var/lib/apt/lists/* /var/cache/apt/* + +# +# copy configuation files +COPY .docker/files/popcorn/supervisord.conf /etc/neko/supervisord/popcorn.conf +COPY .docker/files/popcorn/openbox.xml /etc/neko/openbox.xml \ No newline at end of file diff --git a/.docker/files/popcorn/openbox.xml b/.docker/files/popcorn/openbox.xml new file mode 100644 index 0000000..0e73a07 --- /dev/null +++ b/.docker/files/popcorn/openbox.xml @@ -0,0 +1,763 @@ + + + + + + + + 10 + 20 + + + + + + no + true + yes + normal + + + + + yes + + no + + yes + + no + + 200 + + no + + + + + Smart + +
yes
+ + Primary + + 1 + +
+ + + Clearlooks + NLIMC + + yes + yes + + sans + 8 + + bold + + normal + + + + sans + 8 + + bold + + normal + + + + sans + 9 + + normal + + normal + + + + sans + 9 + + normal + + normal + + + + sans + 9 + + bold + + normal + + + + sans + 9 + + bold + + normal + + + + + + + 1 + 1 + + + + 875 + + + + + yes + Nonpixel + + Center + + + + + 10 + + 10 + + + + + + + 0 + 0 + 0 + 0 + + + + TopLeft + + 0 + 0 + no + Above + + Vertical + + no + 300 + + 300 + + Middle + + + + + C-g + + + + leftno + + + rightno + + + upno + + + downno + + + leftno + + + rightno + + + upno + + + downno + + + 1 + + + 2 + + + 3 + + + 4 + + + + + + + + + + + + + + + + + + + + scrot -s + + + + + + + + + + + + + + + + + + + + + + + + yesyes + + + + + + + + + + + + right + + + + + left + + + + + up + + + + + down + + + + + + + + true + Konqueror + + kfmclient openProfile filemanagement + + + + + scrot + + + + + 1 + + 500 + + 400 + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + previous + + + next + + + previous + + + next + + + previous + + + next + + + + + + + + + + + + + + no + + + + + + + + + + + yes + + + + + + + + + + + + + + + + + + + + + + + + + + + top + + + + + + left + + + + + + right + + + + + + bottom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vertical + + + horizontal + + + + + + + + + + + + + + + + + previous + + + next + + + + previous + + + next + + + previous + + + next + + + + + + + + + + + + + + + + + + + + previous + + + next + + + previous + + + next + + + + + + + + + + + menu.xml + 200 + + no + + 100 + + 400 + + yes + + yes + + + + + + + +
diff --git a/.docker/files/popcorn/supervisord.conf b/.docker/files/popcorn/supervisord.conf new file mode 100644 index 0000000..3ba90fc --- /dev/null +++ b/.docker/files/popcorn/supervisord.conf @@ -0,0 +1,11 @@ + +[program:popcorn] +environment=HOME="/home/%(ENV_USER)s",USER="%(ENV_USER)s",DISPLAY="%(ENV_DISPLAY)s" +command= +autorestart=true +priority=800 +user=%(ENV_USER)s +stdout_logfile=/var/log/neko/popcorn.log +stdout_logfile_maxbytes=100MB +stdout_logfile_backups=10 +redirect_stderr=true \ No newline at end of file