From b6ab6e0b4608bf1c7d02aa34b142d64a232870bb Mon Sep 17 00:00:00 2001 From: marph91 <33229141+marph91@users.noreply.github.com> Date: Mon, 8 Dec 2025 11:06:42 +0100 Subject: [PATCH] Desktop: Use the "--no-sandbox" flag for Tuxedo OS (#13810) --- Joplin_install_and_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Joplin_install_and_update.sh b/Joplin_install_and_update.sh index 453a5d5112..0e903b3d47 100755 --- a/Joplin_install_and_update.sh +++ b/Joplin_install_and_update.sh @@ -275,7 +275,7 @@ if command -v lsb_release &> /dev/null; then # without writing the AppImage to a non-user-writable location (without invalidating other security # controls). See https://discourse.joplinapp.org/t/possible-future-requirement-for-no-sandbox-flag-for-ubuntu-23-10/. HAS_USERNS_RESTRICTIONS=false - if [[ "$DISTVER" =~ ^Ubuntu && $DISTMAJOR -ge 23 ]]; then + if [[ "$DISTVER" =~ ^(Ubuntu|Tuxedo) && $DISTMAJOR -ge 23 ]]; then HAS_USERNS_RESTRICTIONS=true fi