Last active
          November 10, 2023 11:26 
        
      - 
      
- 
        Save IcedMango/ca8485452c62fe049e3178785a097c7b to your computer and use it in GitHub Desktop. 
Revisions
- 
        IcedMango revised this gist Jan 27, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -71,7 +71,7 @@ ] }, { "description": "Double click option toggle Raycast clipboard (Hotkey: ctrl+option+cmd+F1)", "manipulators": [ { "conditions": [ 
- 
        IcedMango created this gist Jan 27, 2022 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,143 @@ { "title": "Raycast Karabiner Config", "rules": [ { "description": "Double click cmd Toggle Raycast(Hotkey: ctrl+option+cmd+Esc)", "manipulators": [ { "conditions": [ { "name": "command_pressed", "type": "variable_if", "value": 1 } ], "from": { "key_code": "left_command", "modifiers": { "optional": ["any"] } }, "to": [ { "key_code": "escape", "modifiers": [ "left_control", "left_alt", "left_command" ] } ], "type": "basic" }, { "from": { "key_code": "left_command", "modifiers": { "optional": ["any"] } }, "to": [ { "set_variable": { "name": "command_pressed", "value": 1 } }, { "key_code": "left_command" } ], "to_delayed_action": { "to_if_canceled": [ { "set_variable": { "name": "command_pressed", "value": 0 } } ], "to_if_invoked": [ { "set_variable": { "name": "command_pressed", "value": 0 } } ] }, "type": "basic" } ] }, { "description": "Double click cmd toggle Raycast clipboard (Hotkey: ctrl+option+cmd+F1)", "manipulators": [ { "conditions": [ { "name": "option_pressed", "type": "variable_if", "value": 1 } ], "from": { "key_code": "left_option", "modifiers": { "optional": ["any"] } }, "to": [ { "key_code": "f1", "modifiers": [ "left_control", "left_alt", "left_command" ] } ], "type": "basic" }, { "from": { "key_code": "left_option", "modifiers": { "optional": ["any"] } }, "to": [ { "set_variable": { "name": "option_pressed", "value": 1 } }, { "key_code": "left_option" } ], "to_delayed_action": { "to_if_canceled": [ { "set_variable": { "name": "option_pressed", "value": 0 } } ], "to_if_invoked": [ { "set_variable": { "name": "option_pressed", "value": 0 } } ] }, "type": "basic" } ] } ] }