Skip to content

Instantly share code, notes, and snippets.

@orand
orand / update_sonoma_wallpaper.sh
Created November 3, 2023 04:25
Update macOS Sonoma video screensaver and wallpaper based on a saved wallpaper Index.plist file
#!/bin/bash
# Check if an argument is given
if [ "$#" -ne 1 ]; then
echo "Usage: $0 path/to/file.plist"
exit 1
fi
# Store the path to the input .plist file
input_plist="$1"