Skip to content

Instantly share code, notes, and snippets.

@euclaise
Created February 25, 2018 06:28
Show Gist options
  • Save euclaise/942470c1dbffa514a4aa0822e7b62bff to your computer and use it in GitHub Desktop.
Save euclaise/942470c1dbffa514a4aa0822e7b62bff to your computer and use it in GitHub Desktop.
Grabs a random wallpaper from alpha.wallhaven.cc
#!/bin/bash
ID=$(curl -s "https://alpha.wallhaven.cc/search?sorting=random" | grep -oP 'thumb-(\d+)' | head -n 1 | tr -d "thumb-")
curl -O "https://wallpapers.wallhaven.cc/wallpapers/full/wallhaven-$ID.jpg"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment