8 lines
203 B
Bash
Executable File
8 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
[ "$#" -eq 0 ] && exit
|
|
torsocks curl -O "$@"
|
|
image="$(basename "$@")"
|
|
feh "$image"
|
|
mv "$image" /data/pictures/anselmages/
|
|
ln -s ../anselmages/"$image" /data/pictures/background-source/"$image"
|