Skip to content

Keyboard Shortcuts…

Everything under System Settings › Keyboard › Keyboard Shortcuts…, as Nix options. Each one is named after the control you'd click, and set under programs.nix-plist-manager.options in home-manager.

90 options 74 verified against System Settings

System Settings › Keyboard › Keyboard Shortcuts… › App Shortcuts

home-manager · per user ✓ Verified on macOS 27

Keys for menu items, per app by bundle identifier or "All Applications", by the menu item's title; a title in a submenu is written with its menus, "Format->Font->Bold". Keys are written like "⌘⇧S" (see Keyboard Shortcuts…). Each app listed gets exactly these; apps left out keep theirs, e.g. { "com.apple.TextEdit" = { "Make Plain Text" = "⌘⇧T"; }; }.

applications.systemSettings.keyboard.keyboardShortcuts.appShortcuts.menuItems = {
"com.apple.TextEdit" = {
"Make Plain Text" = "⌘⇧T";
};
};

Per app, by bundle identifier (see the example)

Where it's stored and what runs
  • com.apple.universalaccess com.apple.custommenu.apps
  • ~/Library/Preferences/<application> NSUserKeyEquivalents

For { com.apple.TextEdit = {"Make Plain Text":"⌘⇧T"}; }:

/usr/bin/defaults write com.apple.TextEdit NSUserKeyEquivalents -dict 'Make Plain Text' '@$t'
/usr/bin/osascript -l JavaScript -e 'ObjC.import('\''Foundation'\'');var d = $.NSUserDefaults.alloc.initWithSuiteName("com.apple.universalaccess");var items = ObjC.deepUnwrap(d.arrayForKey("com.apple.custommenu.apps")) || [];var members = {"com.apple.TextEdit":true};Object.keys(members).forEach(function (item) { var at = items.indexOf(item); if (members[item] && at < 0) items.push(item); if (!members[item] && at >= 0) items.splice(at, 1);});d.setObjectForKey($(items), "com.apple.custommenu.apps");d.synchronize;' >/dev/null || echo 'nix-plist-manager: failed: /usr/bin/osascript -l JavaScript -e '\''ObjC.import('\''\'\'''\''Foundation'\''\'\'''\'');var d = $.NSUserDefaults.alloc.initWithSuiteName("com.apple.universalaccess");var items = ObjC.deepUnwrap(d.arrayForKey("com.apple.custommenu.apps")) || [];var members = {"com.apple.TextEdit":true};Object.keys(members).forEach(function (item) { var at = items.indexOf(item); if (members[item] && at < 0) items.push(item); if (!members[item] && at >= 0) items.splice(at, 1);});d.setObjectForKey($(items), "com.apple.custommenu.apps");d.synchronize;'\'' >/dev/null' >&2
/usr/bin/defaults -currentHost delete com.apple.universalaccess com.apple.custommenu.apps 2>/dev/null || true

System Settings › Keyboard › Keyboard Shortcuts… › Services

home-manager · per user ✓ Verified on macOS 27

Services, on or off, or on with keys such as "⌘⇧T", by the id macOS keeps them under: "<app's bundle identifier> - <menu title> - <method>", e.g. { "com.apple.Terminal - New Terminal at Folder - newTerminalAtFolder" = "⌘⇧T"; }. Services left out are left as they are; nix run .#current lists the ones that were changed in System Settings.

applications.systemSettings.keyboard.keyboardShortcuts.services = {
"com.apple.Terminal - New Terminal at Folder - newTerminalAtFolder" = "⌘⇧T";
};

Per service id: false, true, or keys like "⌘⇧S"

Where it's stored and what runs
  • pbs NSServicesStatus

For { com.apple.Terminal - New Terminal at Folder - newTerminalAtFolder = "⌘⇧T"; }:

/usr/bin/defaults write pbs NSServicesStatus -dict-add 'com.apple.Terminal - New Terminal at Folder - newTerminalAtFolder' '<dict><key>enabled_context_menu</key><true/><key>enabled_services_menu</key><true/><key>key_equivalent</key><string>@$t</string><key>presentation_modes</key><dict><key>ContextMenu</key><true/><key>ServicesMenu</key><true/></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write pbs NSServicesStatus -dict-add '\''com.apple.Terminal - New Terminal at Folder - newTerminalAtFolder'\'' '\''<dict><key>enabled_context_menu</key><true/><key>enabled_services_menu</key><true/><key>key_equivalent</key><string>@$t</string><key>presentation_modes</key><dict><key>ContextMenu</key><true/><key>ServicesMenu</key><true/></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete pbs NSServicesStatus 2>/dev/null || true
/System/Library/CoreServices/pbs -update

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Speech › Cancel speech

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.cancelSpeech = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 228 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 228 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 228 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 228 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Contrast › Decrease contrast

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.decreaseContrast = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 26 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 26 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 26 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 26 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Speech › Hide or show phrases

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.hideOrShowPhrases = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 229 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 229 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 229 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 229 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Contrast › Increase contrast

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.increaseContrast = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 25 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 25 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 25 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 25 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Invert colors

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.invertColors = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 21 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 21 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 21 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 21 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Speech › Pause or resume speech

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.pauseOrResumeSpeech = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 227 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 227 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 227 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 227 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Live Captions › Pause or resume transcription

Section titled “Live Captions › Pause or resume transcription”

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Captions › Pause or resume transcription

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.pauseOrResumeTranscription = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 216 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 216 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 216 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 216 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Show Accessibility controls

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.showAccessibilityControls = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 162 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 162 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 162 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 162 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Live Captions › Switch between transcribing computer audio and microphone

Section titled “Live Captions › Switch between transcribing computer audio and microphone”

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Captions › Switch between transcribing computer audio and microphone

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.switchBetweenTranscribingComputerAudioAndMicrophone = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 218 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 218 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 218 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 218 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Speech › Toggle visibility

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.toggleVisibility = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 226 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 226 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 226 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 226 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Live Captions › Turn keep onscreen on or off

Section titled “Live Captions › Turn keep onscreen on or off”

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Captions › Turn keep onscreen on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.turnKeepOnscreenOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 219 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 219 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 219 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 219 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Live Captions › Turn Live Captions on or off

Section titled “Live Captions › Turn Live Captions on or off”

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Captions › Turn Live Captions on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.turnLiveCaptionsOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 215 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 215 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 215 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 215 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Live Speech › Turn Live Speech on or off

Section titled “Live Speech › Turn Live Speech on or off”

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Speech › Turn Live Speech on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.turnLiveSpeechOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 225 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 225 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 225 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 225 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Turn speak item under the pointer on or off

Section titled “Turn speak item under the pointer on or off”

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Turn speak item under the pointer on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.turnSpeakItemUnderThePointerOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 231 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 231 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 231 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 231 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Turn speak selection on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.turnSpeakSelectionOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 230 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 230 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 230 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 230 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Live Captions › Turn type to speak on or off

Section titled “Live Captions › Turn type to speak on or off”

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Live Captions › Turn type to speak on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.turnTypeToSpeakOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 217 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 217 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 217 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 217 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Turn typing feedback on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.turnTypingFeedbackOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 232 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 232 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 232 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 232 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Accessibility › Turn VoiceOver on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.accessibility.turnVoiceOverOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 59 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 59 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 59 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 59 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › App Shortcuts › All Applications › Show Help menu

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.appShortcuts.showHelpMenu = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 98 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 98 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 98 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 98 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Display › Decrease display brightness

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.display.decreaseDisplayBrightness = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 53 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 53 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 53 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 53 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Display › Increase display brightness

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.display.increaseDisplayBrightness = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 54 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 54 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 54 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 54 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Input Sources › Select next source in Input menu

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.inputSources.selectNextSourceInInputMenu = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 61 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 61 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 61 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 61 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Input Sources › Select the previous input source

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.inputSources.selectThePreviousInputSource = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 60 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 60 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 60 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 60 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Change the way Tab moves focus

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.changeTheWayTabMovesFocus = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 13 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 13 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 13 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 13 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Move focus to active or next window

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.moveFocusToActiveOrNextWindow = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 9 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 9 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 9 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 9 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Move focus to next window

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.moveFocusToNextWindow = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 27 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 27 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 27 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 27 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Move focus to status menus

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.moveFocusToStatusMenus = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 57 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 57 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 57 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 57 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Move focus to the Dock

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.moveFocusToTheDock = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 8 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 8 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 8 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 8 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Move focus to the floating window

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.moveFocusToTheFloatingWindow = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 11 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 11 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 11 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 11 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Move focus to the menu bar

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.moveFocusToTheMenuBar = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 7 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 7 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 7 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 7 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Move focus to the window toolbar

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.moveFocusToTheWindowToolbar = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 10 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 10 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 10 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 10 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Show contextual menu

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.showContextualMenu = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 159 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 159 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 159 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 159 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Keyboard › Turn keyboard access on or off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.keyboard.turnKeyboardAccessOnOrOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 12 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 12 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 12 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 12 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Launchpad & Dock › Turn Dock hiding on/off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.launchpadAndDock.turnDockHidingOnOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 52 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 52 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 52 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 52 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Game Overlay

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.gameOverlay = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 260 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 260 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 260 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 260 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Move left a Space

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.moveLeftASpace = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 79 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 79 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 79 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 79 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Move right a Space

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.moveRightASpace = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 81 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 81 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 81 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 81 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Quick Note

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.quickNote = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 190 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 190 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 190 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 190 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Show Notification Center

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.showNotificationCenter = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 163 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 163 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 163 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 163 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 1

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop1 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 118 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 118 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 118 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 118 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 10

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop10 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 127 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 127 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 127 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 127 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 11

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop11 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 128 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 128 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 128 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 128 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 12

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop12 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 129 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 129 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 129 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 129 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 13

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop13 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 130 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 130 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 130 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 130 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 14

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop14 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 131 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 131 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 131 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 131 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 15

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop15 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 132 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 132 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 132 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 132 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 16

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop16 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 133 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 133 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 133 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 133 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 2

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop2 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 119 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 119 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 119 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 119 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 3

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop3 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 120 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 120 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 120 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 120 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 4

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop4 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 121 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 121 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 121 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 121 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 5

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop5 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 122 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 122 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 122 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 122 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 6

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop6 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 123 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 123 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 123 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 123 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 7

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop7 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 124 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 124 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 124 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 124 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 8

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop8 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 125 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 125 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 125 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 125 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Mission Control › Switch to Desktop 9

home-manager · per user Not verified

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.switchToDesktop9 = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 126 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 126 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 126 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 126 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Turn Do Not Disturb on/off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.turnDoNotDisturbOnOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 175 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 175 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 175 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 175 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Mission Control › Turn Stage Manager on/off

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.missionControl.turnStageManagerOnOff = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 222 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 222 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 222 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 222 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Screenshots › Ask Siri about active window

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.screenshots.askSiriAboutActiveWindow = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 263 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 263 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 263 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 263 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Screenshots › Ask Siri about selected area

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.screenshots.askSiriAboutSelectedArea = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 261 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 261 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 261 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 261 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Screenshots › Copy picture of screen to the clipboard

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.screenshots.copyPictureOfScreenToTheClipboard = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 29 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 29 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 29 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 29 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Copy picture of selected area to the clipboard

Section titled “Copy picture of selected area to the clipboard”

System Settings › Keyboard › Keyboard Shortcuts… › Screenshots › Copy picture of selected area to the clipboard

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.screenshots.copyPictureOfSelectedAreaToTheClipboard = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 31 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 31 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 31 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 31 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Screenshots › Save picture of screen as a file

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.screenshots.savePictureOfScreenAsAFile = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 28 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 28 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 28 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 28 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Screenshots › Save picture of selected area as a file

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.screenshots.savePictureOfSelectedAreaAsAFile = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 30 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 30 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 30 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 30 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Screenshots › Screenshot and recording options

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.screenshots.screenshotAndRecordingOptions = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 184 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 184 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 184 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 184 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Spotlight › Show Apps

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.spotlight.showApps = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 160 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 160 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 160 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 160 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Spotlight › Show Finder search window

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.spotlight.showFinderSearchWindow = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 65 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 65 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 65 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 65 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Spotlight › Show Spotlight search

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.spotlight.showSpotlightSearch = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 64 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 64 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 64 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 64 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Arrange › Arrange Bottom and Top

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.arrangeBottomAndTop = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 251 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 251 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 251 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 251 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Arrange › Arrange in Quarters

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.arrangeInQuarters = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 256 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 256 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 256 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 256 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Arrange › Arrange Left and Right

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.arrangeLeftAndRight = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 248 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 248 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 248 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 248 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Arrange › Arrange Right and Left

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.arrangeRightAndLeft = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 249 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 249 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 249 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 249 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Arrange › Arrange Top and Bottom

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.arrangeTopAndBottom = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 250 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 250 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 250 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 250 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › General › Center

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.center = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 238 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 238 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 238 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 238 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › General › Fill

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.fill = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 237 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 237 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 237 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 237 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Full Screen Tile › Full Screen Tile Left

Section titled “Full Screen Tile › Full Screen Tile Left”

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Full Screen Tile › Full Screen Tile Left

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.fullScreenTileLeft = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 257 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 257 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 257 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 257 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Full Screen Tile › Full Screen Tile Right

Section titled “Full Screen Tile › Full Screen Tile Right”

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Full Screen Tile › Full Screen Tile Right

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.fullScreenTileRight = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 258 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 258 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 258 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 258 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › General › Minimize

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.minimize = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 233 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 233 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 233 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 233 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › General › Return to Previous Size

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.returnToPreviousSize = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 239 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 239 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 239 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 239 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Halves › Tile Bottom Half

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.tileBottomHalf = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 243 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 243 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 243 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 243 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Quarters › Tile Bottom Left Quarter

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.tileBottomLeftQuarter = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 246 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 246 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 246 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 246 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Quarters › Tile Bottom Right Quarter

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.tileBottomRightQuarter = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 247 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 247 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 247 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 247 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Halves › Tile Left Half

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.tileLeftHalf = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 240 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 240 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 240 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 240 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Halves › Tile Right Half

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.tileRightHalf = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 241 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 241 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 241 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 241 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Halves › Tile Top Half

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.tileTopHalf = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 242 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 242 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 242 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 242 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Quarters › Tile Top Left Quarter

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.tileTopLeftQuarter = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 244 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 244 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 244 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 244 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › Quarters › Tile Top Right Quarter

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.tileTopRightQuarter = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 245 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 245 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 245 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 245 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

System Settings › Keyboard › Keyboard Shortcuts… › Windows › General › Zoom

home-manager · per user ✓ Verified on macOS 27

false turns the shortcut off and true on with its default keys; keys such as "⌘⇧S" (⌃⌥⇧⌘ and one key: a letter, digit or punctuation of the US layout, Space, Return, Tab, Delete, Escape, an arrow, Home, End, PageUp, PageDown, ForwardDelete or F1–F20) set its keys.

applications.systemSettings.keyboard.keyboardShortcuts.windows.zoom = false;

false (off), true (on, default keys), or keys like "⌘⇧S" — see Keyboard shortcuts

Where it's stored and what runs
  • com.apple.symbolichotkeys AppleSymbolicHotKeys

For false:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 235 '<dict><key>enabled</key><false/></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 235 '\''<dict><key>enabled</key><false/></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

For ⌘⇧S:

/usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 235 '<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>' || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 235 '\''<dict><key>enabled</key><true/><key>value</key><dict><key>parameters</key><array><integer>115</integer><integer>1</integer><integer>1179648</integer></array><key>type</key><string>standard</string></dict></dict>'\''' >&2
/usr/bin/defaults -currentHost delete com.apple.symbolichotkeys AppleSymbolicHotKeys 2>/dev/null || true
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u

Use F1, F2, etc. keys as standard function keys

Section titled “Use F1, F2, etc. keys as standard function keys”

System Settings › Keyboard › Keyboard Shortcuts… › Function Keys › Use F1, F2, etc. keys as standard function keys

home-manager · per user Not verified
applications.systemSettings.keyboard.useF1F2EtcKeysAsStandardFunctionKeys = true;

true or false "unset" puts back macOS's default.

Where it's stored and what runs
  • NSGlobalDomain com.apple.keyboard.fnState

For false:

/usr/bin/defaults write NSGlobalDomain com.apple.keyboard.fnState -bool false || echo 'nix-plist-manager: failed: /usr/bin/defaults write NSGlobalDomain com.apple.keyboard.fnState -bool false' >&2
/usr/bin/defaults -currentHost delete NSGlobalDomain com.apple.keyboard.fnState 2>/dev/null || true

For true:

/usr/bin/defaults write NSGlobalDomain com.apple.keyboard.fnState -bool true || echo 'nix-plist-manager: failed: /usr/bin/defaults write NSGlobalDomain com.apple.keyboard.fnState -bool true' >&2
/usr/bin/defaults -currentHost delete NSGlobalDomain com.apple.keyboard.fnState 2>/dev/null || true

For unset:

/usr/bin/defaults delete NSGlobalDomain com.apple.keyboard.fnState 2>/dev/null || true
/usr/bin/defaults -currentHost delete NSGlobalDomain com.apple.keyboard.fnState 2>/dev/null || true