Skip to content

Instantly share code, notes, and snippets.

@mizlan
Last active May 15, 2021 01:33
Show Gist options
  • Save mizlan/d7b11688cfad44654bc3f15a629a7fe8 to your computer and use it in GitHub Desktop.
Save mizlan/d7b11688cfad44654bc3f15a629a7fe8 to your computer and use it in GitHub Desktop.

lockdown fixes for MacOS

Notification Center (right panel) not working:

launchctl load -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist && open /System/Library/CoreServices/NotificationCenter.app/

tried and works, source

on second thought, this might work for me because I manually disabled SIP

Mission Control (App Expose) not working:

defaults delete com.apple.dock mcx-expose-disabled && killall Dock

tried and works, source

Get your Spaces back (may or may not do anything)

defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 79 "{enabled = 1; value = {parameters = (65535,123, 262144); type = standard; }; }"
defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 80 "{enabled = 1; value = { parameters = (65535, 123, 393216); type = 'standard'; }; }"
defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 81 "{enabled = 1; value = { parameters = (65535, 124, 262144); type = 'standard'; }; }"
defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 82 "{enabled = 1; value = { parameters = (65535, 124, 393216); type = 'standard'; }; }"

didn't do anything for me, but this is in the official CAASPP browser technical specification for 18-19

keyboard shortcuts

You will manually have to re-enable all shortcuts in System Preferences -> Keyboard -> Shortcuts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment