วิธีการตั้งค่าทางลัดปุ่มกดสองครั้งบน Mavericks เช่นกดปุ่มตัวเลือกสองครั้งสำหรับการควบคุมภารกิจ


2

ฉันสงสัยว่าคุณจะตั้งค่าทางลัดปุ่มกดสองครั้งบน Mavericks ได้อย่างไร เช่นกดปุ่มตัวเลือกสองครั้งสำหรับการเปิดเผย ฉันค้นหาทุกที่โดยไม่มีคำตอบที่ชัดเจน ฉันไม่พบแม้แต่แอปพลิเคชันที่สามารถทำได้

ขอบคุณ

คำตอบ:


2

คุณสามารถใช้private.xmlเช่นนี้กับ KeyRemap4MacBook:

<?xml version="1.0"?>
<root>
  <item>
    <name>custom</name>
    <identifier>custom</identifier>
    <autogen>__DoublePressModifier__ KeyCode::OPTION_L, KeyCode::OPTION_L,
    KeyCode::EXPOSE_ALL</autogen>
  </item>
</root>

คุณยังสามารถกำหนดฟังก์ชั่นต่าง ๆ ให้กับการกดปุ่มค้างไว้ นี่จะทำให้การกดคำสั่งถูกต้องเปิด Safari:

<?xml version="1.0"?>
<root>
  <vkopenurldef>
    <name>KeyCode::VK_OPEN_URL_SAFARI</name>
    <url>file:///Applications/Safari.app</url>
  </vkopenurldef>
  <item>
    <name>custom</name>
    <identifier>custom</identifier>
    <autogen>__KeyOverlaidModifier__ KeyCode::COMMAND_R, KeyCode::COMMAND_R,
    KeyCode::VK_OPEN_URL_SAFARI</autogen>
  </item>
</root>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.