-
Notifications
You must be signed in to change notification settings - Fork 19
/
regreet.sample.toml
44 lines (33 loc) · 1.14 KB
/
regreet.sample.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# SPDX-FileCopyrightText: 2022 Harish Rajagopal <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
[background]
# Path to the background image
path = "/usr/share/backgrounds/greeter.jpg"
# 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 = "Cantarell 16"
# Icon theme name
icon_theme_name = "Adwaita"
# GTK theme name
theme_name = "Adwaita"
[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!"