2023-11-30 07:39:08 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
backupMacPrefs() {
|
2023-12-25 06:50:02 +00:00
|
|
|
if [ -d /Applications ] && [ -d /System ]; then
|
|
|
|
if command -v macprefs > /dev/null; then
|
2024-05-28 03:50:11 +00:00
|
|
|
gum log -sl info 'Backing up macOS preferences with macprefs'
|
2023-12-25 06:50:02 +00:00
|
|
|
macprefs backup -t system_preferences startup_items shared_file_lists app_store_preferences internet_accounts
|
2023-11-30 07:39:08 +00:00
|
|
|
fi
|
2023-12-25 06:50:02 +00:00
|
|
|
fi
|
2023-11-30 07:39:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
backupMacPrefs
|