Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit 9827c11

Browse files
committed
add wayland init logic
1 parent 39f71f7 commit 9827c11

4 files changed

Lines changed: 17 additions & 0 deletions

File tree

README.md

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

567567
## Versions
568568

569+
* **20.12.25:** - Add Wayland init logic.
569570
* **24.11.25:** - Initial Version.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,5 @@ init_diagram: |
102102
"citron:latest" <- Base Images
103103
# changelog
104104
changelogs:
105+
- {date: "20.12.25:", desc: "Add Wayland init logic."}
105106
- {date: "24.11.25:", desc: "Initial Version."}

root/defaults/autostart_wayland

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
if [ ! -f "${HOME}/.config/citron/qt-config.ini" ]; then
4+
mkdir -p "${HOME}/.config/citron/"
5+
cp /defaults/qt-config.ini "${HOME}/.config/citron/"
6+
fi
7+
8+
foot -e citron

root/defaults/menu_wayland.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<openbox_menu xmlns="http://openbox.org/3.4/menu">
3+
<menu id="root-menu" label="MENU">
4+
<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="Citron" icon="/usr/share/icons/hicolor/scalable/apps/org.citron_emu.citron.svg"><action name="Execute"><command>foot -e /usr/sbin/citron</command></action></item>
6+
</menu>
7+
</openbox_menu>

0 commit comments

Comments
 (0)