Browse Source

Fix incorrect kill command

patch-1
Luke Childs 7 years ago
committed by GitHub
parent
commit
cd830fa695
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      osx/set-defaults.sh

2
osx/set-defaults.sh

@ -232,7 +232,7 @@ defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-ty
for app in "Activity Monitor" "Address Book" "Calendar" "Contacts" "cfprefsd" \
"Dock" "Finder" "Mail" "Messages" "Safari" "SystemUIServer" \
"Terminal" "Twitter" "iCal"; do
kill all "${app}" > /dev/null 2>&1
killall "${app}" > /dev/null 2>&1
done
# Wait a bit before moving on...

Loading…
Cancel
Save