Removed turnstiled from installation

This commit is contained in:
Tastatur 2023-12-28 22:19:04 +01:00
parent b00330a709
commit 1e66f73cbd

View file

@ -1,11 +1,9 @@
# Session manager
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 `turnstile` and `pam_rundir` for a minimal setup:
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 turnstile pam-rundir
# rc-update add seatd default
# rc-update add turnstiled default
# apk add seatd pam-rundir
```
Then make sure `pam_rundir` exports `XDG_RUNTIME_DIR` by uncommenting its line in `/etc/pam.d/base-session`:
@ -14,10 +12,8 @@ Then make sure `pam_rundir` exports `XDG_RUNTIME_DIR` by uncommenting its line i
session optional pam_rundir.so
```
And turn off `manage_rundir` in `/etc/turnstile/turnstiled.conf`:
Any graphical session launched has to be prefixed with:
```
manage_rundir = no
$ dbus-run-session -- seatd-launch <program>
```
> Also make sure your user is in the `seat` group.