KeyRemap4MacBook का उपयोग करके, आप इसे जोड़ सकते हैं private.xml :
<item>
<name>disable_command_q</name>
<identifier>disable_command_q</identifier>
<autogen>__KeyToKey__ KeyCode::Q, VK_COMMAND | ModifierFlag::NONE, KeyCode::VK_NONE</autogen>
<autogen>__KeyToKey__ KeyCode::Q, VK_COMMAND | VK_SHIFT | ModifierFlag::NONE, KeyCode::Q, ModifierFlag::COMMAND_L</autogen>
</item>
के बिना | ModifierFlag::NONE
पहला ऑटोजेन तत्व उदाहरण wouldQ के लिए भी निष्क्रिय हो जाएगा। दूसरा ऑटोजेन तत्व toQ को autQ में बदलता है।
पूर्वनिर्धारित सेटिंग्स भी हैं जो भेजने के लिए ⌘Q को दो बार ⌘Q को पकड़ने या दबाने की आवश्यकता होती है:
उनमें परिभाषित हैं custom_shortcuts.xml :
<item>
<name>Hold Command+Q to Quit Application</name>
<appendix>(You can adjust the threshold time of holding by</appendix>
<appendix>"[Holding Key to Key] Holding Threshold" in Key Repeat tab.)</appendix>
<identifier>remap.holdcommandQ</identifier>
<autogen>__HoldingKeyToKey__ KeyCode::Q, VK_COMMAND | ModifierFlag::NONE, KeyCode::VK_NONE, KeyCode::Q, VK_COMMAND, Option::NOREPEAT</autogen>
</item>
<item>
<name>Press Command+Q twice to Quit Application</name>
<identifier>remap.doublepresscommandQ</identifier>
<autogen>__DoublePressModifier__ KeyCode::Q, VK_COMMAND | ModifierFlag::NONE,
KeyCode::VK_NONE,
KeyCode::Q, VK_COMMAND
</autogen>
</item>