Skip to content

Commit 3046281

Browse files
authored
Merge pull request #4 from linuxserver/initfix
fix init to not have session looping
2 parents a89a915 + 658d232 commit 3046281

4 files changed

Lines changed: 15 additions & 1 deletion

File tree

README.md

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

615615
## Versions
616616

617+
* **02.03.26:** - Fix init to not use session wrapper.
617618
* **25.02.26:** - Initial Version.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,5 @@ init_diagram: |
108108
"webstation:latest" <- Base Images
109109
# changelog
110110
changelogs:
111+
- {date: "02.03.26:", desc: "Fix init to not use session wrapper."}
111112
- {date: "25.02.26:", desc: "Initial Version."}

root/defaults/autostart_wayland

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ if [ ! -f "${HOME}/.config/Cemu/controllerProfiles/controller0.xml" ]; then
6868
"${HOME}/.config/Cemu/controllerProfiles/controller0.xml"
6969
fi
7070

71-
dbus-run-session startlxqt > /dev/null 2>&1
71+
dbus-run-session /startui.sh

root/startui.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#! /bin/bash
2+
3+
export QT_QPA_PLATFORMTHEME=lxqt
4+
export XDG_CURRENT_DESKTOP=LXQt
5+
export LXQT_SESSION_CONFIG=session
6+
7+
/usr/bin/pcmanfm-qt --desktop --profile=lxqt &
8+
/usr/bin/lxqt-globalkeysd &
9+
/usr/bin/lxqt-notificationd &
10+
/usr/bin/lxqt-panel &
11+
/usr/bin/lxqt-policykit-agent &
12+
/usr/bin/lxqt-runner

0 commit comments

Comments
 (0)