mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-23 15:13:12 +01:00
8 lines
238 B
Nix
8 lines
238 B
Nix
|
{ 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
|
||
|
''
|