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 @@ -620,6 +620,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **21.03.26:** - Use Wayland ozone platform fixes scaling and acceleration.
* **28.12.25:** - Add Wayland init logic.
* **22.09.25:** - Rebase to Debian Trixie.
* **24.07.25:** - Swap from thunar to caja for filebrowser.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ init_diagram: |
"vscodium:latest" <- Base Images
# changelog
changelogs:
- {date: "21.03.26:", desc: "Use Wayland ozone platform fixes scaling and acceleration."}
- {date: "28.12.25:", desc: "Add Wayland init logic."}
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
- {date: "24.07.25:", desc: "Swap from thunar to caja for filebrowser."}
Expand Down
7 changes: 6 additions & 1 deletion root/usr/bin/chromium
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ if ! pgrep chromium > /dev/null;then
rm -f $HOME/.config/chromium/Singleton*
fi

${BIN} --password-store=basic --no-sandbox --test-type "$@"
# Wayland check
if pgrep labwc > /dev/null 2>&1; then
WAYLAND="--ozone-platform=wayland"
fi

${BIN} --password-store=basic ${WAYLAND} --no-sandbox --test-type "$@"
6 changes: 6 additions & 0 deletions root/usr/bin/codium
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

BIN=/usr/share/codium/bin/codium

# Wayland check
if pgrep labwc > /dev/null 2>&1; then
WAYLAND="--ozone-platform=wayland"
fi

dbus-launch ${BIN} \
--no-sandbox \
${WAYLAND} \
"$@"