Configure wallpaper in gnome
This commit is contained in:
parent
0e7bbab42a
commit
f1a53d0a02
1 changed files with 9 additions and 1 deletions
|
@ -168,7 +168,12 @@ with lib; {
|
||||||
};
|
};
|
||||||
|
|
||||||
# Gnome settings.
|
# Gnome settings.
|
||||||
dconf.settings = {
|
dconf.settings = let
|
||||||
|
wallpaper = pkgs.fetchurl {
|
||||||
|
url = "https://git.fern.garden/fern/flock/raw/branch/main/suites/desktop/wallpaper.jpg";
|
||||||
|
hash = "sha256-NOEJy8Tlag7pySdQnwxARJHFTzLpfwrwfksnH0/y8Mc=";
|
||||||
|
};
|
||||||
|
in {
|
||||||
"org/gnome/desktop/interface".accent-color = "green"; # Main colour used throughout interface.
|
"org/gnome/desktop/interface".accent-color = "green"; # Main colour used throughout interface.
|
||||||
"org/gnome/desktop/interface".clock-show-seconds = true; # Show seconds on menubar clock.
|
"org/gnome/desktop/interface".clock-show-seconds = true; # Show seconds on menubar clock.
|
||||||
"org/gnome/desktop/interface".clock-show-weekday = true; # Show weekday on menubar clock.
|
"org/gnome/desktop/interface".clock-show-weekday = true; # Show weekday on menubar clock.
|
||||||
|
@ -209,6 +214,9 @@ with lib; {
|
||||||
command = "ghostty";
|
command = "ghostty";
|
||||||
name = "Open Terminal";
|
name = "Open Terminal";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"org/gnome/desktop/background".picture-uri = "file://${wallpaper}";
|
||||||
|
"org/gnome/desktop/background".picture-uri-dark = "file://${wallpaper}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue