1
Fork 0
satellite/home/adrielus/features/desktop/common/xwallpaper.nix
Matei Adriel 15247fa82d
Many changes, but among other things:
- Use base16 colors for xmonad
- No more useless fish base16 theming
- Different wallpapers for each theme
2023-01-26 21:49:43 +01:00

11 lines
234 B
Nix

{ config, ... }:
let
wallpapers = {
"Catppuccin Latte" = ./wallpapers/wall.png;
"Catppuccin Frappe" = ./wallpapers/nix-catppuccin.png;
};
in
{
home.file.".background-image".source = wallpapers.${config.scheme.scheme};
}