all repos — dotfiles @ 048f69747b918284ff7856135fec4dc59c4a0cdd

linux dotfiles

bin/scripts/get-ep-walls

1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/sh
epdir="$HOME/pictures/ep"
if [ -d $epdir ]
then
    cd "$epdir"
    wget -O - --quiet reddit.com/r/earthporn.json cat earthporn.json |\
        jq '.data.children[] .data.url' | tr -d '"' | grep -E "jpg|png$" |\
        xargs wget
else
    printf "$epdir doesn't exist\n"
    exit
fi