feat: better handles (#70)
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:
Hari 2026-04-08 16:38:20 -04:00 committed by GitHub
parent af19b1e78b
commit c84611bdf1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 129 additions and 37 deletions

View file

@ -13,6 +13,26 @@ let
aquaNeutral = "#689d6a";
gray = "#928374";
};
wallpaperGeneration = {
view = {
# Lower zoom shows more terrain in each wallpaper.
zoom = 11;
tileConcurrency = 6;
};
contours = {
# Higher levels produce denser contour lines.
levels = 20;
};
candidatePool = {
maxCached = 24;
randomAttempts = 20;
historySize = 10;
};
label = {
enabled = true;
fontSize = 14;
};
};
wallpapers = {
dir = "${config.home.homeDirectory}/Pictures/Screensavers";
dark = "${config.home.homeDirectory}/Pictures/Screensavers/wallpaper-dark.jpg";
@ -20,6 +40,7 @@ let
current = "${config.home.homeDirectory}/Pictures/Screensavers/wallpaper.jpg";
staticDark = ../assets/wallpapers/topography-dark.jpg;
staticLight = ../assets/wallpapers/topography-light.jpg;
generation = wallpaperGeneration;
};
paths = {
stateDir = "${config.xdg.stateHome}/theme";