10 lines
306 B
Bash
10 lines
306 B
Bash
|
#!/usr/bin/env sh
|
||
|
# required packages:
|
||
|
# - wget
|
||
|
# - jq
|
||
|
|
||
|
set -e
|
||
|
|
||
|
#wget -O - http://www.reddit.com/r/wallpapers.rss 2> /dev/null | grep -Eo "https://?[^&]+(jpg|png)" | grep -v "thumbs" | head -1
|
||
|
wget -O - "http://www.reddit.com/r/wallpapers/top/.json?t=day" 2> /dev/null | jq -r ".data.children[0].data.url"
|