zaneyos/config/scripts/wallsetter.nix

8 lines
238 B
Nix
Raw Normal View History

2024-01-11 05:03:15 +01:00
{ pkgs }:
pkgs.writeShellScriptBin "wallsetter" ''
NEWWALLPAPER=$(find $HOME/Pictures/Wallpapers -type l | shuf -n 1)
${pkgs.swww}/bin/swww img $NEWWALLPAPER --transition-type wave --transition-angle 120 --transition-step 30
''