File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
1010LABEL maintainer="thelamer"
1111
1212# title
13- ENV TITLE=Joplin
13+ ENV TITLE=Joplin \
14+ NO_GAMEPAD=true \
15+ PIXELFLUX_WAYLAND=true
1416
1517RUN \
1618 echo "**** add icon ****" && \
2830 "https://github.com/laurent22/joplin/releases/download/${JOPLIN_VERSION}/Joplin-$(echo ${JOPLIN_VERSION}| sed 's/^v//g').deb" && \
2931 apt-get install -y \
3032 /tmp/joplin.deb && \
33+ mv \
34+ /usr/bin/joplin \
35+ /usr/bin/joplin-real && \
3136 echo "**** cleanup ****" && \
3237 apt-get autoclean && \
3338 rm -rf \
Original file line number Diff line number Diff line change @@ -612,6 +612,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
612612
613613# # Versions
614614
615+ * **03.04.26:** - Make Wayland default disable with PIXELFLUX_WAYLAND=false.
615616* **21.03.26:** - Use Wayland ozone platform fixes scaling and acceleration.
616617* **28.12.25:** - Add Wayland init logic.
617618* **19.08.25:** - Initial release.
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ init_diagram: |
106106 "joplin:latest" <- Base Images
107107# changelog
108108changelogs :
109+ - {date: "03.04.26:", desc: "Make Wayland default disable with PIXELFLUX_WAYLAND=false."}
109110 - {date: "21.03.26:", desc: "Use Wayland ozone platform fixes scaling and acceleration."}
110111 - {date: "28.12.25:", desc: "Add Wayland init logic."}
111112 - {date: "19.08.25:", desc: "Initial release."}
Original file line number Diff line number Diff line change 1- joplin --no-sandbox
1+ joplin
Original file line number Diff line number Diff line change 1- joplin --ozone-platform=wayland --no-sandbox
1+ joplin
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ BIN=/usr/bin/joplin-real
4+
5+ # Wayland check
6+ if ls -l /dev/dri/* > /dev/null 2>&1 ; then
7+ if pgrep labwc > /dev/null 2>&1 ; then
8+ WAYLAND=" --ozone-platform=wayland"
9+ fi
10+ fi
11+
12+ ${BIN} ${WAYLAND} --no-sandbox " $@ "
You can’t perform that action at this time.
0 commit comments