List .desktop sessions from the existing scan, pre-select bos when present (else the first entry), and pass the chosen Exec= argv to greetd StartSession.
27 lines
932 B
TOML
27 lines
932 B
TOML
# breadgreet commonly runs as the dedicated `greeter` system user (per
|
|
# greetd's own convention), so it checks /etc/greetd/breadgreet.toml first;
|
|
# copy this there for a real install. For local dev/testing under a normal
|
|
# user session it falls back to ~/.config/breadgreet/breadgreet.toml.
|
|
#
|
|
# Every field is optional and defaults to the value shown here.
|
|
|
|
[background]
|
|
mode = "color"
|
|
path = ""
|
|
blur = false
|
|
|
|
[clock]
|
|
format = "%H:%M"
|
|
|
|
[font]
|
|
family = "Varela Round"
|
|
|
|
[sessions]
|
|
# Directories scanned for .desktop session entries, in order.
|
|
wayland_dirs = ["/usr/share/wayland-sessions"]
|
|
xsessions_dirs = ["/usr/share/xsessions"]
|
|
# .desktop file stem (without extension) pre-selected in the picker.
|
|
# Falls back to the first entry found if this isn't present. BOS ships
|
|
# bos.desktop (Exec=bos-session); leaving this as "bos" is what the ISO
|
|
# config expects so Hyprland's own hyprland.desktop is not picked first.
|
|
default = "bos"
|