4 lines
252 B
Bash
4 lines
252 B
Bash
#!/bin/sh
|
|
WALLPAPER=$(find "$HOME/nixos-dotfiles/config/sway/wallpapers" -maxdepth 1 -type f \( -name "*.png" -o -name "*.jpg" -o -name "*.jpeg" \) | shuf -n 1)
|
|
awww img "$WALLPAPER" --transition-type random --transition-duration 2 --transition-fps 60
|