dotfiles/bin/setwallpaper

10 lines
152 B
Plaintext
Raw Normal View History

2024-03-02 07:24:48 -05:00
#!/bin/bash
if [ -z "$1" ]
then
echo "./setwallpaper [path]";
exit 1;
fi
swww img --transition-type wipe --transition-fps 90 "$1" && wal -i "$1"