Added dbus

This commit is contained in:
Tastatur 2024-02-20 15:56:01 +01:00
parent 084d7d57ea
commit 49ffdfcb76

View file

@ -3,7 +3,7 @@
To be able to run a graphical enviroment it's necessary to run a seat and session manager. It's recommended to use `seatd` in conjunction with `pam_rundir` for a minimal setup:
```
# apk add seatd-launcher pam-rundir
# apk add seatd-launch pam-rundir
```
Then make sure `pam_rundir` exports `XDG_RUNTIME_DIR` by uncommenting its line in `/etc/pam.d/base-session`:
@ -12,8 +12,14 @@ Then make sure `pam_rundir` exports `XDG_RUNTIME_DIR` by uncommenting its line i
session optional pam_rundir.so
```
`dbus` will also be necessary for a functional desktop enviroment:
```
# apk add cmd:dbus-launch
```
Any graphical session launched has to be prefixed with:
```
$ dbus-run-session -- seatd-launch <program>
$ dbus-launch -- seatd-launch -- <program>
```