| 1 | # gardm configuration |
| 2 | # Place this file at /etc/gardm/config.toml |
| 3 | |
| 4 | [general] |
| 5 | # Default session to launch (without .desktop extension) |
| 6 | default_session = "gar" |
| 7 | # Path to greeter executable |
| 8 | greeter = "/usr/bin/gardm-greeter" |
| 9 | # VT to use (0 = auto-select) |
| 10 | vt = 0 |
| 11 | # X11 display |
| 12 | display = ":0" |
| 13 | |
| 14 | [greeter] |
| 15 | # Background blur radius |
| 16 | blur_radius = 20 |
| 17 | # Background brightness (0.0-1.0) |
| 18 | blur_brightness = 0.7 |
| 19 | # Show power buttons (shutdown, reboot, suspend) |
| 20 | show_power_buttons = true |
| 21 | # Show session selector dropdown |
| 22 | show_session_selector = true |
| 23 | # Use garbg's current wallpaper |
| 24 | use_garbg_wallpaper = true |
| 25 | # Fallback wallpaper if garbg not available |
| 26 | fallback_wallpaper = "/usr/share/backgrounds/default.jpg" |
| 27 | |
| 28 | [security] |
| 29 | # Allow empty passwords (NOT recommended) |
| 30 | allow_empty_password = false |
| 31 | # Lock after N failed attempts (0 = disabled) |
| 32 | lockout_attempts = 5 |
| 33 | # Lockout duration in seconds |
| 34 | lockout_duration = 300 |