Add sample config.toml
Authored by
mfwolffe <wolffemf@dukes.jmu.edu>
- SHA
7e390cb15933245c0401ce8ad2734cbbe31d3084- Parents
-
0b5f226 - Tree
388bd05
7e390cb
7e390cb15933245c0401ce8ad2734cbbe31d30840b5f226
388bd05| Status | File | + | - |
|---|---|---|---|
| A |
examples/config.toml
|
34 | 0 |
examples/config.tomladded@@ -0,0 +1,34 @@ | |||
| 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 | ||