43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
# regreet.toml — cyberqueer-themed ReGreet greeter for greetd (Wayland-native)
|
|
#
|
|
# Deployed to /etc/greetd/regreet.toml by
|
|
# setup/modules/optional-Modules/apps/greetd-regreet.sh.
|
|
#
|
|
# ReGreet is GTK4, so it reuses the cyberqueer GTK theme's gtk-4.0 assets
|
|
# (/usr/share/themes/cyberqueer) — matching the desktop without hardcoded colours
|
|
# here. Being a wlroots/Wayland greeter it drives every monitor natively (no
|
|
# blank outputs) and hands input straight to the Wayland session with no
|
|
# Xorg→Wayland VT handover.
|
|
|
|
# Remember the last user + session and skip the pickers.
|
|
skip_selection = false
|
|
|
|
[background]
|
|
# Tracks the user's current desktop wallpaper: the picker writes
|
|
# ~/.config/hypr/usr/wallpaper.conf and the lightdm-greeter-wallpaper.path unit
|
|
# copies the chosen image here (a path the unprivileged greeter can read).
|
|
path = "/usr/share/backgrounds/lightdm-greeter-bg.png"
|
|
fit = "Cover"
|
|
|
|
[GTK]
|
|
application_prefer_dark_theme = true
|
|
cursor_theme_name = "Adwaita"
|
|
cursor_blink = true
|
|
# Bumped well above the 11pt the old greeter used, so the greeter reads large on
|
|
# the 4K panel. Tune here (or via GDK_SCALE in regreet-session.sh) to taste.
|
|
font_name = "JetBrains Mono 16"
|
|
icon_theme_name = "Adwaita"
|
|
theme_name = "cyberqueer"
|
|
|
|
[commands]
|
|
reboot = ["systemctl", "reboot"]
|
|
poweroff = ["systemctl", "poweroff"]
|
|
|
|
[appearance]
|
|
greeting_msg = "Welcome back"
|
|
|
|
[widget.clock]
|
|
format = "%H:%M"
|
|
resolution = "1s"
|
|
label_width = 150
|