Skip to content

Instantly share code, notes, and snippets.

@toyg
Last active May 25, 2016 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toyg/69c192fd9ce21dbdb646d17a0c630195 to your computer and use it in GitHub Desktop.
Save toyg/69c192fd9ce21dbdb646d17a0c630195 to your computer and use it in GitHub Desktop.
Change Login background image in OSX. Execute with sudo; takes 1 parameter, the path to your new file (must be a PNG image).
#!/bin/bash
chflags nouchg /Library/Caches/com.apple.desktop.admin.png
cp /Library/Caches/com.apple.desktop.admin.png /Library/Caches/com.apple.desktop.admin.BACKUP.png
cp $1 /Library/Caches/com.apple.desktop.admin.png
chflags uchg /Library/Caches/com.apple.desktop.admin.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment