diff --git a/chromium-wrapper b/chromium-wrapper index 5d8c071..6690e4d 100644 --- a/chromium-wrapper +++ b/chromium-wrapper @@ -120,6 +120,10 @@ if [ $want_debug -eq 1 ] ; then $GDB "$LIBDIR/$APPNAME" -x $tmpfile exit $? else - exec $LIBDIR/$APPNAME $SANDBOX ${CHROMIUM_FLAGS} "--password-store=basic" "$@" + # --disable-features=AudioServiceSandbox makes Chromium use the same policy as Chrome and fixes issues with + # accessing /run/user/%d/pulse/* on rosa2019.1+ + # services/audio/audio_sandbox_hook_linux.cc in general looks like hackery with hardcoded paths + # https://bugs.chromium.org/p/chromium/issues/detail?id=1018580 + exec $LIBDIR/$APPNAME $SANDBOX ${CHROMIUM_FLAGS} "--password-store=basic" "--disable-features=AudioServiceSandbox" "$@" fi