dotfiles/modules/cli/bin/randomWallpaper.nix
2022-04-05 11:12:01 +02:00

12 lines
247 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"
'';
}