You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
237 B
13 lines
237 B
#/usr/bin/env bash
|
|
|
|
if [[ ! $1 ]]; then
|
|
i=1;
|
|
else
|
|
i=$1
|
|
fi
|
|
|
|
cd "$HOME/Images/Wallpapers/test"
|
|
while [[ $i -gt 0 ]]; do
|
|
wget https://source.unsplash.com/random/1920x1080 -O $(echo $RANDOM |md5sum | head -c 8)
|
|
((i--))
|
|
done;
|
|
|