included relevant work from impermanence branch

This commit is contained in:
pagedmov
2024-10-17 22:07:34 -04:00
parent f512c7c7bb
commit 11f97cf4f3
23 changed files with 222 additions and 173 deletions

View File

@@ -1,6 +1,7 @@
{
host,
username,
self,
...
}: {
services.hyprpaper = {
@@ -9,16 +10,16 @@
ipc = "on";
splash = false;
splash_offset = 2.0;
preload = ["/home/${username}/Pictures/Wallpapers/cat-leaves.png"];
preload = ["${self}/media/wallpapers/catppuccin/cat-leaves.png"];
wallpaper =
if (host == "desktop")
if (host == "oganesson")
then [
"DP-1,/home/${username}/Pictures/Wallpapers/cat-leaves.png"
"HDMI-A-1,/home/${username}/Pictures/Wallpapers/cat-leaves.png"
"DP-1,${self}/media/wallpapers/catppuccin/cat-leaves.png"
"HDMI-A-1,${self}/media/wallpapers/catppuccin/cat-leaves.png"
]
else [
"eDP-1,/home/${username}/Pictures/Wallpapers/cat-leaves.png"
"eDP-1,${self}/media/wallpapers/catppuccin/cat-leaves.png"
];
};
};