From ea026d47767310e0a6215eee80a6e4623613282e Mon Sep 17 00:00:00 2001 From: thelamer Date: Wed, 17 Jan 2024 09:39:15 -0800 Subject: [PATCH] update chromium wrapper --- root/usr/local/bin/wrapped-chromium | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/root/usr/local/bin/wrapped-chromium b/root/usr/local/bin/wrapped-chromium index 182b8669..72e629d9 100755 --- a/root/usr/local/bin/wrapped-chromium +++ b/root/usr/local/bin/wrapped-chromium @@ -2,8 +2,13 @@ BIN=/usr/bin/chromium +# 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 +if grep -q 'Seccomp:\t0' /proc/1/status; then ${BIN} --password-store=basic "$@" else ${BIN} --password-store=basic --no-sandbox --test-type "$@"