Created
September 6, 2018 23:22
-
-
Save andrewodri/7dcd741d6d82ec52e92abef9264ed337 to your computer and use it in GitHub Desktop.
Replace Lock Screen Image in macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo cp /Library/Caches/com.apple.desktop.admin.png /Library/Caches/com.apple.desktop.admin.png.bak | |
sudo sips -s format png --resampleHeightWidth 1800 2880 $@ --out /Library/Caches/com.apple.desktop.admin.png | |
sudo chmod 644 /Library/Caches/com.apple.desktop.admin.png | |
sudo chown $(whoami):admin /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