Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ init_diagram: |
"mullvad-browser:latest" <- Base Images
# changelog
changelogs:
- {date: "26.08.25:", desc: "Suppress sandbox security warning as it's misleading inside a container."}
- {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."}
- {date: "28.08.24:", desc: "Rebase to noble."}
- {date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon."}
Expand Down
9 changes: 8 additions & 1 deletion root/app/Browser/mullvadbrowser-lsio
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
#!/bin/bash
/app/Browser/mullvadbrowser -profile $HOME/lsio ${HOMEPAGE}

if [[ ! -d "${HOME}/lsio" ]]; then
/app/Browser/mullvadbrowser -CreateProfile "lsio ${HOME}/lsio"
fi

echo 'user_pref("security.sandbox.warn_unprivileged_namespaces", false);' >> "${HOME}/lsio/prefs.js"

/app/Browser/mullvadbrowser -profile "${HOME}/lsio" "${HOMEPAGE:-https://linuxserver.io}"
4 changes: 2 additions & 2 deletions root/defaults/autostart
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

# Default folder
if [ ! -f $HOME/lsio ]; then
mkdir $HOME/lsio
if [[ ! -d "${HOME}/lsio" ]]; then
mkdir "${HOME}/lsio"
fi

# Start app
Expand Down