Skip to content

Commit

Permalink
Merge branch 'main' into adobe-premiere-pro-scroll-timeline-with-mous…
Browse files Browse the repository at this point in the history
…e-button-3
  • Loading branch information
tekezo authored Jun 13, 2024
2 parents e115369 + 146e828 commit 920a3d1
Show file tree
Hide file tree
Showing 12 changed files with 1,089 additions and 0 deletions.
21 changes: 21 additions & 0 deletions public/groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,9 @@
{
"path": "json/adobe_premiere_pro_scroll_timeline_mouse_button_3.json"
},
{
"path": "json/slack_left_option_search.json"
},
{
"path": "json/obsidian_emacs_vim-insert.json"
},
Expand Down Expand Up @@ -529,6 +532,21 @@
{
"path": "json/xcode.json"
},
{
"path": "json/vs-code-ctrl-option-quick-open.json"
},
{
"path": "json/vs_code_left_ctrl_toggle_sidebar.json"
},
{
"path": "json/vs_code_left_option_toggle_terminal.json"
},
{
"path": "json/vs_code_left_shift_search_symbols.json"
},
{
"path": "json/vs_code_right_cmd_zen_mode.json"
},
{
"path": "json/vscode.json",
"extra_description_path": "extra_descriptions/vscode.json.html"
Expand Down Expand Up @@ -1270,6 +1288,9 @@
"name": "OS Functionality",
"id": "os-functionality",
"files": [
{
"path": "json/mac_osx_double_tap_q_close_application.json"
},
{
"path": "json/mwit-taskbar-number-launch-app.json"
},
Expand Down
21 changes: 21 additions & 0 deletions public/json/mac_osx_disable_cmd_h.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"title": "disable cmd + h (Mac OSX: Disable Minimise Windows)",
"author": "Carlo van Wyk (https://github.com/thecarlo)",
"maintainers": ["thecarlo"],
"rules": [
{
"description": "disable cmd + h (Mac OSX: Disable Minimise Windows)",
"manipulators": [
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["command"]
}
},
"type": "basic"
}
]
}
]
}
69 changes: 69 additions & 0 deletions public/json/mac_osx_double_tap_q_close_application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"title": "left cmd + double tap q to close an application (Mac OSX: left cmd + q, q to close an application)",
"author": "Carlo van Wyk (https://github.com/thecarlo)",
"maintainers": ["thecarlo"],
"rules": [
{
"description": "left cmd + double tap q to close an application (Mac OSX: left cmd + q, q to close an application)",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": ["command"]
}
},
"to": [
{
"key_code": "q",
"modifiers": ["left_command"]
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": ["command"]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
}
]
}
59 changes: 59 additions & 0 deletions public/json/rk61_for_mac.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"title": "RK61 Keyboard Mac Fix: Tilde and Slash Key Remapping",
"maintainers": [
"juan-28"
],
"rules": [
{
"description": "right_shift + esc → ~",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "up_arrow turn to slash when press with left_command",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "slash"
}
]
}
]
}
]
}
38 changes: 38 additions & 0 deletions public/json/slack_left_option_search.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"title": "left option → cmd + k (Slack → launch search)",
"author": "Carlo van Wyk (https://github.com/thecarlo)",
"maintainers": ["thecarlo"],
"rules": [
{
"description": "left option → cmd + k (Slack → launch search)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_option",
"modifiers": {
"optional": ["any"]
}
},
"to": [
{
"key_code": "left_option"
}
],
"to_if_alone": [
{
"key_code": "k",
"modifiers": ["left_command"]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": ["^com\\.tinyspeck\\.slackmacgap$"]
}
]
}
]
}
]
}
Loading

0 comments on commit 920a3d1

Please sign in to comment.