2020-06-15 14:51:47 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
# required packages:
|
|
|
|
# - wget
|
|
|
|
# - jq
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2020-06-18 12:29:35 +00:00
|
|
|
# There are 2 subreddits "wallpapers" and "wallpaper" the 2nd one is bigger.
|
2020-07-15 15:45:39 +00:00
|
|
|
SUB="${1:-wallpaper}"
|
2020-06-18 12:29:35 +00:00
|
|
|
|
2020-11-30 00:36:38 +00:00
|
|
|
wget --hsts-file="$XDG_CACHE_HOME/wget-hsts" -O - "http://www.reddit.com/r/$SUB/top/.json?t=day" 2> /dev/null | jq -r ".data.children[0].data.url"
|
2020-06-18 12:29:35 +00:00
|
|
|
|