feat: init dynamic wallpaper ($theme gen)
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions

This commit is contained in:
Harivansh Rathi 2026-04-08 15:10:57 -04:00
parent 38c096dbc1
commit af19b1e78b
6 changed files with 489 additions and 11 deletions

View file

@ -14,8 +14,12 @@ let
gray = "#928374";
};
wallpapers = {
dark = ../assets/wallpapers/topography-dark.jpg;
light = ../assets/wallpapers/topography-light.jpg;
dir = "${config.home.homeDirectory}/Pictures/Screensavers";
dark = "${config.home.homeDirectory}/Pictures/Screensavers/wallpaper-dark.jpg";
light = "${config.home.homeDirectory}/Pictures/Screensavers/wallpaper-light.jpg";
current = "${config.home.homeDirectory}/Pictures/Screensavers/wallpaper.jpg";
staticDark = ../assets/wallpapers/topography-dark.jpg;
staticLight = ../assets/wallpapers/topography-light.jpg;
};
paths = {
stateDir = "${config.xdg.stateHome}/theme";