Set wallpaper path for sway and regreet.

This commit is contained in:
Kevin Baensch 2024-12-01 17:26:37 +01:00
parent 3b76a4eabf
commit 8cb423eb70
Signed by: derped
GPG key ID: C0F1D326C7626543
2 changed files with 6 additions and 1 deletions

View file

@ -68,7 +68,7 @@ pkgs.writeText "config" ''
### Output configuration ### Output configuration
# #
# Default wallpaper # Default wallpaper
output * bg ${../../../assets/mount3.jpg} fill output * bg /persist/data/wallpaper.jpg fill
#output eDP-1 scale 1.5 #output eDP-1 scale 1.5
# #
# Example configuration: # Example configuration:

View file

@ -42,6 +42,11 @@ in
regreet = { regreet = {
enable = true; enable = true;
settings = { settings = {
background = {
path = "/persist/data/wallpaper.jpg";
# Available values: "Fill", "Contain", "Cover", "ScaleDown"
fit = "Fill";
};
GTK = { GTK = {
application_prefer_dark_theme = true; application_prefer_dark_theme = true;
theme_name = lib.mkForce "Kanagawa-BL"; theme_name = lib.mkForce "Kanagawa-BL";