60 lines
1.7 KiB
TOML
60 lines
1.7 KiB
TOML
# SPDX-FileCopyrightText: 2022 Harish Rajagopal <harish.rajagopals@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
[background]
|
|
# Path to the background image
|
|
path = "/home/fy59/Images/Wallpapers/sway.png"
|
|
|
|
# How the background image covers the screen if the aspect ratio doesn't match
|
|
# Available values: "Fill", "Contain", "Cover", "ScaleDown"
|
|
# Refer to: https://docs.gtk.org/gtk4/enum.ContentFit.html
|
|
# NOTE: This is ignored if ReGreet isn't compiled with GTK v4.8 support.
|
|
fit = "Cover"
|
|
|
|
[GTK]
|
|
# Whether to use the dark theme
|
|
application_prefer_dark_theme = true
|
|
|
|
# Cursor theme name
|
|
cursor_theme_name = "catppuccin-mocha-lavender-cursors"
|
|
|
|
# Whether to blink the cursor
|
|
cursor_blink = true
|
|
|
|
# Font name and size
|
|
font_name = "jetbrains mono nerd font 14"
|
|
|
|
# Icon theme name
|
|
icon_theme_name = "Tela-blue-dark"
|
|
|
|
# GTK theme name
|
|
theme_name = "catppuccin-mocha-lavender-standard+default"
|
|
|
|
[commands]
|
|
# The command used to reboot the system
|
|
reboot = ["systemctl", "reboot"]
|
|
|
|
# The command used to shut down the system
|
|
poweroff = ["systemctl", "poweroff"]
|
|
|
|
[appearance]
|
|
# The message that initially displays on startup
|
|
greeting_msg = "Welcome back!"
|
|
|
|
|
|
[widget.clock]
|
|
# strftime format argument
|
|
# See https://docs.rs/jiff/0.1.14/jiff/fmt/strtime/index.html#conversion-specifications
|
|
format = "%H:%M"
|
|
|
|
# How often to update the text
|
|
resolution = "500ms"
|
|
|
|
# Override system timezone (IANA Time Zone Database name, aka /etc/zoneinfo path)
|
|
# Remove to use the system time zone.
|
|
timezone = "Europe/Paris"
|
|
|
|
# Ask GTK to make the label at least this wide. This helps keeps the parent element layout and width consistent.
|
|
# Experiment with different widths, the interpretation of this value is entirely up to GTK.
|
|
label_width = 150
|