worst wallpaper switcher EVER
This commit is contained in:
parent
cff640a554
commit
d6ba358108
13 changed files with 50 additions and 3 deletions
22
packages/wallpapers/default.nix
Normal file
22
packages/wallpapers/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, stdenvNoCC }:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "wallpapers";
|
||||
version = "unstable";
|
||||
|
||||
src = ./.;
|
||||
|
||||
# later, add XML files to /usr(?)/share/backgrounds
|
||||
# then, it is selectable from places like in gnome and also do the same for KDE
|
||||
installPhase = ''
|
||||
mkdir -p "$out/share/backgrounds"
|
||||
cp -r "$src/img/." "$out/share/backgrounds/"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Small collection of wallpapers";
|
||||
# idk what to put here:
|
||||
# license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue