diff options
author | Cătălin Mariș <alrraa@gmail.com> | 2013-11-03 00:39:11 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2013-11-04 14:15:19 +0100 |
commit | 284ced9441b552411dd7964649f6ef3c9572055a (patch) | |
tree | 3f30f558aebb477d608f3742878d31827d623f30 | |
parent | 7f96896d33ba33e8e4fec7309b2bd592377e8249 (diff) | |
download | dotfiles-284ced9441b552411dd7964649f6ef3c9572055a.tar.gz dotfiles-284ced9441b552411dd7964649f6ef3c9572055a.tar.bz2 dotfiles-284ced9441b552411dd7964649f6ef3c9572055a.zip |
.osx: Don’t `kill` Dashboard
`killall Dashboard` doesn’t actually do anything. To apply the changes for Dashboard, `killall Dock` is enough as Dock is Dashboard’s parent process.
Closes #277.
-rwxr-xr-x | .osx | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -659,9 +659,9 @@ defaults write com.twitter.twitter-mac HideInBackground -bool true # Kill affected applications # ############################################################################### -for app in "Address Book" "Calendar" "Contacts" "Dashboard" "Dock" "Finder" \ - "Mail" "Messages" "Safari" "SizeUp" "SystemUIServer" "Terminal" \ - "Transmission" "Twitter" "iCal"; do +for app in "Address Book" "Calendar" "Contacts" "Dock" "Finder" "Mail" \ + "Messages" "Safari" "SizeUp" "SystemUIServer" "Terminal" "Transmission" \ + "Twitter" "iCal"; do killall "${app}" > /dev/null 2>&1 done echo "Done. Note that some of these changes require a logout/restart to take effect." |