forked from bida/MastodonMegafono
13 lines
191 B
Bash
13 lines
191 B
Bash
#!/bin/sh
|
|
|
|
# WTFPL!
|
|
|
|
pic=$(immaginibuongiorno)
|
|
|
|
if [ "$pic" = "" ]
|
|
then
|
|
echo "notfound"
|
|
pic=$(immaginibuongiorno --random)
|
|
fi
|
|
wget -O /tmp/buongiorno "$pic"
|
|
toot -i="/tmp/buongiorno"
|