All checks were successful
Update PKGBUILD version / update-pkgver (push) Successful in 2s
GTK4 under greetd does not honour XCURSOR_THEME reliably — the env-prefix hack in /etc/greetd/config.toml only reached the wlroots pointer in cage, while GTK widgets kept using the default fallback cursor. Mirror the existing gtk-theme handling: new cursor-theme + cursor-size fields in the [appearance] section, applied via gtk::Settings::set_gtk_cursor_theme_*. Keeps the fix scoped to the greeter, no system-wide GTK config changes.
16 lines
595 B
TOML
16 lines
595 B
TOML
# ABOUTME: Example configuration for the Moongreet greeter.
|
|
# ABOUTME: Copy to /etc/moongreet/moongreet.toml and adjust paths.
|
|
|
|
[appearance]
|
|
# Absolute path to wallpaper image
|
|
background = "/usr/share/backgrounds/wallpaper.jpg"
|
|
|
|
# GTK theme name — must match a directory in /usr/share/themes/
|
|
# Required because GTK4 under greetd does not reliably read settings.ini
|
|
gtk-theme = "Colloid-Grey-Dark-Catppuccin"
|
|
|
|
# Cursor theme name — must match a directory in /usr/share/icons/
|
|
# GTK4 under greetd does not honour XCURSOR_THEME, so set it here.
|
|
cursor-theme = "Sweet-cursors"
|
|
cursor-size = 24
|