mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 04:10:05 +00:00
🐛 Fix gnome wallpaper mapping
Some checks failed
Trufflehog: check for exposed secrets / Run trufflehog (push) Has been cancelled
Nix: check for unused code / Run deadnix (push) Has been cancelled
Nix: validate flake.lock / Check Lockfile (push) Has been cancelled
Nix: validate flake / Validate x86_64-linux (push) Has been cancelled
Some checks failed
Trufflehog: check for exposed secrets / Run trufflehog (push) Has been cancelled
Nix: check for unused code / Run deadnix (push) Has been cancelled
Nix: validate flake.lock / Check Lockfile (push) Has been cancelled
Nix: validate flake / Validate x86_64-linux (push) Has been cancelled
This commit is contained in:
parent
6308798c9e
commit
f6058e8547
1 changed files with 3 additions and 3 deletions
|
@ -65,7 +65,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
wallpaper =
|
wallpaper =
|
||||||
mkOpt str (builtins.toString ../wallpapers/catppuccin/howard-chen-mao-mao-forest-campsite.jpg)
|
mkOpt path ../wallpapers/building_top_sit_dusk.jpg
|
||||||
"Specify the path of your prefered Gnome wallpaper.";
|
"Specify the path of your prefered Gnome wallpaper.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -106,8 +106,8 @@ in
|
||||||
dynamic-opacity = false;
|
dynamic-opacity = false;
|
||||||
};
|
};
|
||||||
"org/gnome/desktop/background" = {
|
"org/gnome/desktop/background" = {
|
||||||
picture-uri = cfg.wallpaper;
|
picture-uri = "file://${cfg.wallpaper}";
|
||||||
picture-uri-dark = cfg.wallpaper;
|
picture-uri-dark = "file://${cfg.wallpaper}";
|
||||||
};
|
};
|
||||||
"org/gnome/desktop/interface" = {
|
"org/gnome/desktop/interface" = {
|
||||||
color-scheme = "prefer-dark";
|
color-scheme = "prefer-dark";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue