Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.
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 @@ -566,4 +566,5 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **20.12.25:** - Add Wayland init logic.
* **24.11.25:** - Initial Version.
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,5 @@ init_diagram: |
"citron:latest" <- Base Images
# changelog
changelogs:
- {date: "20.12.25:", desc: "Add Wayland init logic."}
- {date: "24.11.25:", desc: "Initial Version."}
8 changes: 8 additions & 0 deletions root/defaults/autostart_wayland
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

if [ ! -f "${HOME}/.config/citron/qt-config.ini" ]; then
mkdir -p "${HOME}/.config/citron/"
cp /defaults/qt-config.ini "${HOME}/.config/citron/"
fi

foot -e citron
7 changes: 7 additions & 0 deletions root/defaults/menu_wayland.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="root-menu" label="MENU">
<item label="foot" icon="/usr/share/icons/hicolor/48x48/apps/foot.png"><action name="Execute"><command>/usr/bin/foot</command></action></item>
<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>
</menu>
</openbox_menu>