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 ec4dfe6 commit e423fa7Copy full SHA for e423fa7
root/usr/bin/chromium
@@ -7,9 +7,9 @@ if ! pgrep chromium > /dev/null;then
7
rm -f $HOME/.config/chromium/Singleton*
8
fi
9
10
-# Run normally on privved containers or modified un non priv
11
-if grep -q 'Seccomp:.0' /proc/1/status; then
12
- ${BIN} --password-store=basic "$@"
13
-else
14
- ${BIN} --password-store=basic --no-sandbox --test-type "$@"
+# Wayland check
+if pgrep sway > /dev/null 2>&1; then
+ WAYLAND="--ozone-platform=wayland"
15
+
+${BIN} --password-store=basic ${WAYLAND} --no-sandbox --test-type "$@"
0 commit comments