9 lines
232 B
Bash
Executable File
9 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
|
|
WALLPATH="$HOME/.local/share/backgrounds/"
|
|
WALLFILE="$(ls $WALLPATH | wofi --show dmenu -p Wallpapers:)"
|
|
|
|
swww img $WALLPATH$WALLFILE --transition-type wipe --transition-step 30 --transition-fps 165 > /dev/null
|
|
|
|
exit 0
|