fix(macos): fix crash when app cannot be killed

This commit is contained in:
Saibotk 2024-12-04 13:28:58 +01:00
parent 7d43b4db1a
commit 5e45624d6b
Signed by: saibotk
GPG key ID: 67585F0065E261D5

View file

@ -787,6 +787,6 @@ for app in "Activity Monitor" \
"Safari" \ "Safari" \
"SystemUIServer" \ "SystemUIServer" \
"iCal"; do "iCal"; do
killall "${app}" &> /dev/null killall "${app}" &> /dev/null || true
done done
echo "Done. Note that some of these changes require a logout/restart to take effect." echo "Done. Note that some of these changes require a logout/restart to take effect."