We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c335df9 commit 6594a93Copy full SHA for 6594a93
root/usr/bin/chromium-browser
@@ -0,0 +1,18 @@
1
+#! /bin/bash
2
+
3
+BIN=/usr/lib/chromium/chromium-launcher.sh
4
5
+# Bugfix for Chromium in Alpine
6
+export GTK_THEME=Adwaita:light
7
8
+# Cleanup
9
+if ! pgrep chromium > /dev/null;then
10
+ rm -f $HOME/.config/chromium/Singleton*
11
+fi
12
13
+# Run normally on privved containers or modified un non priv
14
+if grep -q 'Seccomp:.0' /proc/1/status; then
15
+ ${BIN} --no-first-run --password-store=basic "$@"
16
+else
17
+ ${BIN} --no-first-run --password-store=basic --no-sandbox --test-type "$@"
18
0 commit comments