sync webtop logic

This commit is contained in:
thelamer 2024-01-17 13:27:04 -08:00 committed by Ryan Kuba
parent 3e86c89ed2
commit 4a5daab65c
4 changed files with 7 additions and 24 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-rdesktop:3.18
FROM ghcr.io/linuxserver/baseimage-rdesktop:3.19
# set version label
ARG BUILD_DATE
@ -10,16 +10,12 @@ LABEL maintainer="thelamer"
RUN \
echo "**** install packages ****" && \
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing \
icewm && \
apk add --no-cache \
chromium \
firefox \
icewm \
st \
util-linux-misc && \
echo "**** application tweaks ****" && \
mv \
/usr/bin/chromium-browser \
/usr/bin/chromium-real && \
ln -s \
/usr/bin/st \
/usr/bin/x-terminal-emulator && \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-rdesktop:arm64v8-3.18
FROM ghcr.io/linuxserver/baseimage-rdesktop:arm64v8-3.19
# set version label
ARG BUILD_DATE
@ -10,16 +10,11 @@ LABEL maintainer="thelamer"
RUN \
echo "**** install packages ****" && \
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing \
icewm && \
apk add --no-cache \
chromium \
firefox \
st \
util-linux-misc && \
echo "**** application tweaks ****" && \
mv \
/usr/bin/chromium-browser \
/usr/bin/chromium-real && \
ln -s \
/usr/bin/st \
/usr/bin/x-terminal-emulator && \

View File

@ -1,3 +1,5 @@
#!/bin/bash
/startpulse.sh &
setterm blank 0
setterm powerdown 0
/usr/bin/icewm-session > /dev/null 2>&1

View File

@ -1,10 +0,0 @@
#!/bin/bash
BIN=/usr/bin/chromium-real
# Run normally on privved containers or modified un non priv
if grep -q 'Seccomp: 0' /proc/1/status; then
${BIN} --password-store=basic "$@"
else
${BIN} --password-store=basic --no-sandbox --test-type "$@"
fi