Restart affected apps when done

This commit is contained in:
Alicia Sykes 2022-11-18 15:50:18 +00:00
parent 93a8728c52
commit b984b41dc0

View File

@ -489,6 +489,25 @@ defaults write org.m0k.transmission BlocklistAutoUpdate -bool true
log_msg "Randomize port on launch"
defaults write org.m0k.transmission RandomPort -bool true
#################################
# Restart affected applications #
#################################
log_section "Finishing Up"
log_msg "Restarting afffecting apps"
for app in "Activity Monitor" \
"Address Book" \
"Calendar" \
"Contacts" \
"Finder" \
"Mail" \
"Messages" \
"Photos" \
"Safari" \
"Terminal" \
"iCal"; do
killall "${app}" &> /dev/null
done
#####################################
# Print finishing message, and exit #
#####################################