Skip to content

Instantly share code, notes, and snippets.

@austinkeeley
Created July 3, 2021 17:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save austinkeeley/e60fda6a21a02d7b4cee1ff0216d7dd8 to your computer and use it in GitHub Desktop.
Save austinkeeley/e60fda6a21a02d7b4cee1ff0216d7dd8 to your computer and use it in GitHub Desktop.
Downloads all the Ubuntu wallpapers
#!/bin/bash
distros="karmic lucid maverick natty oneiric precise quantal raring saucy trusty utopic vivid wily xenial yakkety zesty artful bionic cosmic disco eoan focal groovy hirsute"
cmd="apt install "
for d in $distros; do
echo "Downloading $d"
cmd="${cmd} ubuntu-wallpapers-${d}"
done
$cmd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment