9 lines
152 B
Bash
Executable file
9 lines
152 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "./setwallpaper [path]";
|
|
exit 1;
|
|
fi
|
|
|
|
swww img --transition-type wipe --transition-fps 90 "$1" && wal -i "$1"
|