Add back wpaperd

This commit is contained in:
Bun 2025-05-29 17:28:32 -04:00
parent f41d78a638
commit 12621e5dcf
6 changed files with 13 additions and 9 deletions

View file

@ -10,6 +10,7 @@
./swaylock ./swaylock
./waybar ./waybar
./wlsunset ./wlsunset
./wpaperd
]; ];
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [ home.packages = with pkgs; lib.mkIf config.home.desktop.enable [

View file

@ -0,0 +1,12 @@
{ config, ... }:
{
services.wpaperd = {
enable = config.home.desktop.enable;
settings = {
default.mode = "stretch";
any.path = builtins.toString ./wallpapers/1.png;
"${config.displays.tower2}".path = builtins.toString ./wallpapers/2.png;
"${config.displays.tower3}".path = builtins.toString ./wallpapers/3.png;
};
};
}

View file

Before

Width:  |  Height:  |  Size: 2 MiB

After

Width:  |  Height:  |  Size: 2 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.9 MiB

After

Width:  |  Height:  |  Size: 1.9 MiB

Before After
Before After

View file

@ -53,14 +53,5 @@
inner = 5; inner = 5;
smartGaps = true; smartGaps = true;
}; };
output = {
"*".bg = "${builtins.toString ./wallpapers/1.png} fill";
"${config.displays.tower2}".bg = "${builtins.toString ./wallpapers/2.png} fill";
"${config.displays.tower3}".bg = "${builtins.toString ./wallpapers/3.png} fill";
"${config.displays.detritus2}".bg = "${builtins.toString ./wallpapers/2.png} fill";
};
}; };
} }