File tree Expand file tree Collapse file tree 5 files changed +19
-2
lines changed
Expand file tree Collapse file tree 5 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -620,6 +620,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
620620
621621# # Versions
622622
623+ * **21.03.26:** - Use Wayland ozone platform flag for apps fixes scaling and acceleration.
623624* **28.12.25:** - Add Wayland init logic.
624625* **22.09.25:** - Rebase to Debian Trixie.
625626* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ init_diagram: |
107107 "github-desktop:latest" <- Base Images
108108# changelog
109109changelogs :
110+ - {date: "21.03.26:", desc: "Use Wayland ozone platform flag for apps fixes scaling and acceleration."}
110111 - {date: "28.12.25:", desc: "Add Wayland init logic."}
111112 - {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
112113 - {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."}
Original file line number Diff line number Diff line change @@ -6,5 +6,9 @@ BIN=/usr/bin/chromium-real
66if ! pgrep chromium > /dev/null; then
77 rm -f $HOME /.config/chromium/Singleton*
88fi
9+ # Wayland check
10+ if pgrep labwc > /dev/null 2>&1 ; then
11+ WAYLAND=" --ozone-platform=wayland"
12+ fi
913
10- ${BIN} --password-store=basic --no-sandbox --test-type " $@ "
14+ ${BIN} --password-store=basic ${WAYLAND} --no-sandbox --test-type " $@ "
Original file line number Diff line number Diff line change 22
33BIN=/usr/share/codium/bin/codium
44
5+ # Wayland check
6+ if pgrep labwc > /dev/null 2>&1 ; then
7+ WAYLAND=" --ozone-platform=wayland"
8+ fi
9+
510${BIN} \
611 --no-sandbox \
12+ ${WAYLAND} \
713 " $@ "
Original file line number Diff line number Diff line change 22
33BIN=/usr/lib/github-desktop/github-desktop
44
5- dbus-launch ${BIN} --password-store=basic --no-sandbox --test-type " $@ "
5+ # Wayland check
6+ if pgrep labwc > /dev/null 2>&1 ; then
7+ WAYLAND=" --ozone-platform=wayland"
8+ fi
9+
10+ dbus-launch ${BIN} --password-store=basic ${WAYLAND} --no-sandbox --test-type " $@ "
You can’t perform that action at this time.
0 commit comments