Greetd: Difference between revisions
(finish sentence) |
Prabuanand (talk | contribs) m (Added category) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 9: | Line 9: | ||
greetd needs to be combined with a greeter. You can find a list of available greeters here: {{pkg|greetd-*}}. Install the main package and the greeter you selected: | greetd needs to be combined with a greeter. You can find a list of available greeters here: {{pkg|greetd-*}}. Install the main package and the greeter you selected: | ||
{{cmd|# apk add {{pkg|greetd}} | {{cmd|# apk add {{pkg|greetd}} }} | ||
Let us use {{pkg|greetd-gtkgreet}} as an example: | |||
{{cmd|# apk add {{pkg|greetd-gtkgreet}}}} | |||
Install a lightweight wayland compositor to be used with greetd login session. | |||
{{cmd|# apk add {{pkg|cage}}}} | |||
== Configuration == | |||
{{ | |||
Graphical greeters (like gtkgreet) require [[seatd]] or [[elogind]]. When you use <code>seatd</code> with a graphical greeter it needs the <code>seatd</code> group: | |||
{{cmd|# adduser greetd seat}} | |||
Depending on whether [[seatd]] or [[elogind]] is used, edit the following file: | |||
{{Cat|/etc/conf.d/greetd|<nowiki>rc_need=seatd | |||
</nowiki>}} | |||
Instead of cage, [[sway]] or any [[wayland]] compositor can be used | |||
{{Cat|/etc/greetd/config.toml|<nowiki>[default_session] | |||
command = "cage -s -- gtkgreet" | |||
user = "greetd" | |||
</nowiki>}} | |||
To start sway session for the user, you might want to start a [[D-Bus#D-Bus_session|D-Bus session]] when the greetd session is started. | |||
{{Cat|/etc/greetd/environments|<nowiki># Launch Sway with a D-Bus server available, use: | |||
dbus-run-session -- sway | |||
</nowiki>}} | |||
Once you have completed the above configuration, Enable and start greetd: | |||
{{cmd|<nowiki># rc-update add greetd | |||
# rc-service greetd start</nowiki>}} | |||
For text based greeters you want to make sure that <code>vt</code> is set in: | |||
{{Cat|/etc/greetd/config.toml|<nowiki> | |||
[terminal] | |||
# The VT to run the greeter on. Can be "next", "current" or a number | |||
# designating the VT. | |||
vt = 7 | |||
</nowiki>}} | |||
== See Also == | == See Also == | ||
* [https://man.sr.ht/~kennylevinsen/greetd/ greetd wiki] | * [https://man.sr.ht/~kennylevinsen/greetd/ greetd wiki] | ||
* [https://wiki.archlinux.org/title/Greetd Arch wiki] | * [https://wiki.archlinux.org/title/Greetd Arch wiki] | ||
[[Category:Display Managers]] | |||
[[Category:Desktop]] | |||
[[Category:Services]] |
Latest revision as of 04:02, 24 September 2024
greetd is a minimal and flexible login manager daemon that makes no assumptions about what you want to launch.
This article focuses on alpine specific instructions. It is recommended to read the greetd wiki first.
Installation
greetd needs to be combined with a greeter. You can find a list of available greeters here: greetd-*. Install the main package and the greeter you selected:
# apk add greetd
Let us use greetd-gtkgreet as an example:
# apk add greetd-gtkgreet
Install a lightweight wayland compositor to be used with greetd login session.
# apk add cage
Configuration
Graphical greeters (like gtkgreet) require seatd or elogind. When you use seatd
with a graphical greeter it needs the seatd
group:
# adduser greetd seat
Depending on whether seatd or elogind is used, edit the following file:
Contents of /etc/conf.d/greetd
Instead of cage, sway or any wayland compositor can be used
Contents of /etc/greetd/config.toml
To start sway session for the user, you might want to start a D-Bus session when the greetd session is started.
Contents of /etc/greetd/environments
Once you have completed the above configuration, Enable and start greetd:
# rc-update add greetd # rc-service greetd start
For text based greeters you want to make sure that vt
is set in:
Contents of /etc/greetd/config.toml