diff options
author | Mathias Bynens <mathias@qiwi.be> | 2014-12-19 09:36:33 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2014-12-19 09:36:33 +0100 |
commit | 0866ff78fd3b139f59d41a4cb08cd71507f4cb89 (patch) | |
tree | 882397db5af90e5605d4cafd23608060a410f148 | |
parent | 07cd2632f56be58a5c1ba41a830e537e34f24e5f (diff) | |
download | dotfiles-0866ff78fd3b139f59d41a4cb08cd71507f4cb89.tar.gz dotfiles-0866ff78fd3b139f59d41a4cb08cd71507f4cb89.tar.bz2 dotfiles-0866ff78fd3b139f59d41a4cb08cd71507f4cb89.zip |
.osx: Revert to plain `killall` without `-HUP`
This reverts commit 07cd2632f56be58a5c1ba41a830e537e34f24e5f.
Ref. #469.
-rwxr-xr-x | .osx | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -745,6 +745,6 @@ defaults write com.twitter.twitter-mac HideInBackground -bool true for app in "Activity Monitor" "Address Book" "Calendar" "Contacts" "cfprefsd" \ "Dock" "Finder" "Mail" "Messages" "Safari" "SizeUp" "SystemUIServer" \ "Terminal" "Transmission" "Twitter" "iCal"; do - killall -HUP "${app}" > /dev/null 2>&1 + killall "${app}" > /dev/null 2>&1 done echo "Done. Note that some of these changes require a logout/restart to take effect." |