33 lines
694 B
TOML
33 lines
694 B
TOML
# Default tuigreet greeter configuration
|
|
# Place this in ./assets/system/conf/greeter.toml
|
|
|
|
[general]
|
|
# Show time at the top
|
|
show_time = true
|
|
time_format = "%I:%M %p | %a • %h | %F"
|
|
|
|
# Remember last logged-in user
|
|
remember_user = true
|
|
|
|
# Welcome message
|
|
welcome_message = "Welcome to Droidnix!"
|
|
|
|
[prompt]
|
|
# Symbol for input prompt
|
|
symbol = "➜"
|
|
# Colors
|
|
user_color = "green"
|
|
password_color = "yellow"
|
|
prompt_color = "cyan"
|
|
|
|
[session]
|
|
# Default session to launch after login
|
|
# Must match a valid NixOS session binary
|
|
command = "Hyprland"
|
|
|
|
# Optional: extra command-line args for the session
|
|
args = []
|
|
|
|
# Optional: background image (can be a full path)
|
|
#background = "/path/to/background.png"
|