From b03f0ea0f5ed7b64f36d0c63ecc57c84f2b146e8 Mon Sep 17 00:00:00 2001 From: Marcel Bischoff Date: Fri, 4 Dec 2015 01:02:33 +0100 Subject: [PATCH] Rework Backup category --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 91d01ce..88fe54c 100644 --- a/README.md +++ b/README.md @@ -224,16 +224,20 @@ This changes the interval to 30 minutes. The integer value is the time in second sudo defaults write /System/Library/Launch Daemons/com.apple.backupd-auto StartInterval -int 1800 ``` -#### Disable Local Time Machine Backups -```bash -hash tmutil &> /dev/null && sudo tmutil disablelocal -``` - #### Prevent Time Machine from Prompting to Use New Hard Drives as Backup Volume ```bash defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true ``` +#### Set Status +```bash +# Disable Local Time Machine Backups +hash tmutil &> /dev/null && sudo tmutil disablelocal + +# Enable Local Time Machine Backups (Default) +hash tmutil &> /dev/null && sudo tmutil enablelocal +``` + ## Developer