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.md
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **20.12.25:** - Add Wayland init logic.
* **26.08.25:** - Suppress sandbox security warning as it's misleading inside a container.
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
* **28.08.24:** - Rebase to noble.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ init_diagram: |
"mullvad-browser:latest" <- Base Images
# changelog
changelogs:
- {date: "20.12.25:", desc: "Add Wayland init logic."}
- {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."}
Expand Down
9 changes: 9 additions & 0 deletions root/defaults/autostart_wayland
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

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

# Start app
/app/Browser/mullvadbrowser-lsio
7 changes: 7 additions & 0 deletions root/defaults/menu_wayland.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="root-menu" label="MENU">
<item label="foot" icon="/usr/share/icons/hicolor/48x48/apps/foot.png"><action name="Execute"><command>/usr/bin/foot</command></action></item>
<item label="Mullvad Browser" icon="/app/Browser/browser/chrome/icons/default/default48.png"><action name="Execute"><command>/app/Browser/mullvadbrowser-lsio</command></action></item>
</menu>
</openbox_menu>