Skip to content

Commit b020f81

Browse files
authored
Merge pull request #12 from linuxserver/wayland-default
make wayland default
2 parents e1cd4dd + d5ecb90 commit b020f81

7 files changed

Lines changed: 9 additions & 5 deletions

File tree

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
1010
LABEL maintainer="thelamer"
1111

1212
# title
13-
ENV TITLE=FreeCAD
13+
ENV TITLE=FreeCAD \
14+
NO_GAMEPAD=true \
15+
PIXELFLUX_WAYLAND=true
1416

1517
RUN \
1618
echo "**** add icon ****" && \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
612612

613613
## Versions
614614

615+
* **29.03.26:** - Make Wayland default disable with PIXELFLUX_WAYLAND=false.
615616
* **28.12.25:** - Add Wayland init logic.
616617
* **22.09.25:** - Rebase to Debian Trixie.
617618
* **02.07.25:** - Rebase to Selkies, HTTPS is now required! Ingest from current appimage.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ init_diagram: |
110110
"freecad:latest" <- Base Images
111111
# changelog
112112
changelogs:
113+
- {date: "29.03.26:", desc: "Make Wayland default disable with PIXELFLUX_WAYLAND=false."}
113114
- {date: "28.12.25:", desc: "Add Wayland init logic."}
114115
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
115116
- {date: "02.07.25:", desc: "Rebase to Selkies, HTTPS is now required! Ingest from current appimage."}

root/defaults/autostart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
xterm -e /opt/freecad/AppRun
1+
/opt/freecad/AppRun

root/defaults/autostart_wayland

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
foot -e /opt/freecad/AppRun
1+
/opt/freecad/AppRun

root/defaults/menu.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<openbox_menu xmlns="http://openbox.org/3.4/menu">
33
<menu id="root-menu" label="MENU">
44
<item label="xterm" icon="/usr/share/pixmaps/xterm-color_48x48.xpm"><action name="Execute"><command>/usr/bin/xterm</command></action></item>
5-
<item label="FreeCAD" icon="/opt/freecad/usr/share/icons/hicolor/64x64/apps/org.freecad.FreeCAD.png"><action name="Execute"><command>xterm -e /opt/freecad/AppRun</command></action></item>
5+
<item label="FreeCAD" icon="/opt/freecad/usr/share/icons/hicolor/64x64/apps/org.freecad.FreeCAD.png"><action name="Execute"><command>/opt/freecad/AppRun</command></action></item>
66
</menu>
77
</openbox_menu>

root/defaults/menu_wayland.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<openbox_menu xmlns="http://openbox.org/3.4/menu">
33
<menu id="root-menu" label="MENU">
44
<item label="foot" icon="/usr/share/icons/hicolor/48x48/apps/foot.png"><action name="Execute"><command>/usr/bin/foot</command></action></item>
5-
<item label="FreeCAD" icon="/opt/freecad/usr/share/icons/hicolor/64x64/apps/org.freecad.FreeCAD.png"><action name="Execute"><command>foot -e /opt/freecad/AppRun</command></action></item>
5+
<item label="FreeCAD" icon="/opt/freecad/usr/share/icons/hicolor/64x64/apps/org.freecad.FreeCAD.png"><action name="Execute"><command>/opt/freecad/AppRun</command></action></item>
66
</menu>
77
</openbox_menu>

0 commit comments

Comments
 (0)