Remove xwallpaper and set-background
Some checks are pending
/ check (push) Waiting to run

This commit is contained in:
Oliver Davies 2025-11-21 23:16:44 +00:00
parent 746d95d0f2
commit 7d4949b6f9
6 changed files with 0 additions and 15 deletions

View file

@ -24,7 +24,6 @@ in
mounter = callPackage ./mounter.nix { };
move-firefox-screenshots = callPackage ./move-firefox-screenshots.nix { };
passmenu-otp = callPackage ./passmenu-otp.nix { };
set-background = callPackage ./set-background.nix { };
tag-release = callPackage ./tag-release.nix { };
time-until = callPackage ./time-until.nix { };
timer = callPackage ./timer.nix { };

View file

@ -1,11 +0,0 @@
{ pkgs, writeShellApplication }:
writeShellApplication {
name = "set-background";
runtimeInputs = with pkgs; [ xwallpaper ];
text = ''
xwallpaper --zoom "''${XDG_REPOS_DIR}/personal/nix-config/wallpaper/wallpaper.jpg"
'';
}