How to get regreet to read config file? #22
-
So I'm loading regreet via greetd and cage in /etc/greetd/config.toml I'm calling
however all I'm getting is the blinding light theme # SPDX-FileCopyrightText: 2022 Harish Rajagopal <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
[background]
# Path to the background image
path = "/usr/share/backrounds/Desktop-Backround.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 = "Contain"
# The entries defined in this section will be passed to the session as environment variables when it is started
[env]
ENV_VARIABLE = "value"
[GTK]
# Whether to use the dark theme
application_prefer_dark_theme = true
# Cursor theme name
cursor_theme_name = "Adwaita"
# Font name and size
font_name = "NotoMono Nerd Font Mono 16"
# Icon theme name
icon_theme_name = "Arc-Icon-Theme"
# GTK theme name
theme_name = "Arc-Dark"
[commands]
# The command used to reboot the system
reboot = [ "systemctl", "reboot" ]
# The command used to shut down the system
poweroff = [ "systemctl", "poweroff" ]
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I edited your question to enable TOML syntax highlighting. Now, you can see that there's an extra double-quote at the end of line 7. That's probably causing ReGreet to fail loading the config. Further, there's probably a typo in "backgrounds" in the path, where you're using "backrounds". |
Beta Was this translation helpful? Give feedback.
-
Confirmed works, closing |
Beta Was this translation helpful? Give feedback.
I edited your question to enable TOML syntax highlighting. Now, you can see that there's an extra double-quote at the end of line 7. That's probably causing ReGreet to fail loading the config. Further, there's probably a typo in "backgrounds" in the path, where you're using "backrounds".