dotfiles/modules/config/bin/randomWallpaper.nix
2022-07-30 16:34:19 +02:00

11 lines
246 B
Nix

{ pkgs }:
pkgs.writeShellApplication {
name = "randomWallpaper";
runtimeInputs = with pkgs; [ findutils coreutils feh ];
text = ''
wallpaper="$(find ~/.config/wallpapers/ -type f,l | shuf -n 1)"
feh --bg-fill "$wallpaper"
'';
}