feat(wallpaper): 'background' -> 'wallpaper' and add one on ahrc-pc

This commit is contained in:
Ahurac 2024-11-19 13:56:31 +01:00
parent f035aa1fe3
commit 1d301d8f9f
5 changed files with 15 additions and 1 deletions

View file

@ -53,6 +53,6 @@
home.file.".local/share/backgrounds/default.png" = { home.file.".local/share/backgrounds/default.png" = {
enable = true; enable = true;
source = ./background.png; source = ./wallpaper.png;
}; };
} }

View file

Before

Width:  |  Height:  |  Size: 164 KiB

After

Width:  |  Height:  |  Size: 164 KiB

View file

@ -31,4 +31,9 @@
}; };
spawn-at-startup = [{ command = [ "eww" "open" "dock_ahrc-pc" ]; }]; spawn-at-startup = [{ command = [ "eww" "open" "dock_ahrc-pc" ]; }];
}; };
home.file.".local/share/backgrounds/default.png" = {
enable = true;
source = ./wallpaper.png;
};
} }

BIN
ahrc-pc/wallpaper.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

View file

@ -428,6 +428,15 @@
}; };
spawn-at-startup = [ spawn-at-startup = [
{ command = [ "eww" "daemon" ]; } { command = [ "eww" "daemon" ]; }
{
command = [
"swaybg"
"-i"
"/home/ahurac/.local/share/backgrounds/default.png"
"-m"
"fill"
];
}
]; ];
}; };
}; };