diff --git a/bin/setwallpaper b/bin/setwallpaper new file mode 100755 index 0000000..61c6ae7 --- /dev/null +++ b/bin/setwallpaper @@ -0,0 +1,9 @@ +#!/bin/bash + +if [ -z "$1" ] +then + echo "./setwallpaper [path]"; + exit 1; +fi + +swww img --transition-type wipe --transition-fps 90 "$1" && wal -i "$1"