swap alpine i3 to chromium (#266)

This commit is contained in:
Ryan Kuba 2024-09-26 14:09:02 +00:00 committed by GitHub
parent bc6fbddf62
commit 430875b01e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 23 additions and 2 deletions

View File

@ -17,7 +17,7 @@ RUN \
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
echo "**** install packages ****" && \
apk add --no-cache \
firefox \
chromium \
i3status \
i3wm \
st \
@ -26,6 +26,9 @@ RUN \
ln -s \
/usr/bin/st \
/usr/bin/x-terminal-emulator && \
sed -i \
's:/usr/bin/chromium-browser:/usr/bin/chromium:g' \
/usr/share/applications/chromium.desktop && \
echo "**** cleanup ****" && \
rm -rf \
/config/.cache \

View File

@ -17,7 +17,7 @@ RUN \
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
echo "**** install packages ****" && \
apk add --no-cache \
firefox \
chromium \
i3status \
i3wm \
st \
@ -26,6 +26,9 @@ RUN \
ln -s \
/usr/bin/st \
/usr/bin/x-terminal-emulator && \
sed -i \
's:/usr/bin/chromium-browser:/usr/bin/chromium:g' \
/usr/share/applications/chromium.desktop && \
echo "**** cleanup ****" && \
rm -rf \
/config/.cache \

15
root/usr/bin/chromium Executable file
View File

@ -0,0 +1,15 @@
#! /bin/bash
BIN=/usr/bin/chromium-browser
# Cleanup
if ! pgrep chromium > /dev/null;then
rm -f $HOME/.config/chromium/Singleton*
fi
# Run normally on privved containers or modified un non priv
if grep -q 'Seccomp:.0' /proc/1/status; then
${BIN} --no-first-run --password-store=basic "$@"
else
${BIN} --no-first-run --password-store=basic --no-sandbox --test-type "$@"
fi