Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update personal_tekezo (Add command+button2 -> command+tab) #1738

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions public/extra_descriptions/personal_tekezo.json.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
<li>Launch 1Password when <kbd>fn</kbd> is pressed alone</li>
</ul>

<ul>
<li>Change <kbd>command + button2</kbd> to <kbd>command + tab</kbd></li>
</ul>

<ul>
<li>Change <kbd>command + control + f</kbd> to <kbd>command + shift + [</kbd></li>
<li>Change <kbd>command + control + j</kbd> to <kbd>command + shift + ]</kbd></li>
Expand Down
24 changes: 23 additions & 1 deletion public/json/personal_tekezo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
],
"rules": [
{
"description": "Personal rules (@tekezo) (rev 56)",
"description": "Personal rules (@tekezo) (rev 57)",
"available_since": "15.1.0",
"manipulators": [
{
Expand Down Expand Up @@ -213,6 +213,28 @@
"basic.to_if_alone_timeout_milliseconds": 250
}
},
{
"type": "basic",
"from": {
"pointing_button": "button2",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"command"
]
}
]
},
{
"type": "basic",
"from": {
Expand Down
23 changes: 22 additions & 1 deletion src/json/personal_tekezo.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function main() {
maintainers: ['tekezo'],
rules: [
{
description: 'Personal rules (@tekezo) (rev 56)',
description: 'Personal rules (@tekezo) (rev 57)',
available_since: '15.1.0',
manipulators: [].concat(
coreConfiguration(),
Expand Down Expand Up @@ -231,6 +231,27 @@ function coreConfiguration() {
},
},

//
// command + button2
//

{
type: 'basic',
from: {
pointing_button: 'button2',
modifiers: {
mandatory: ['command'],
optional: ['any'],
},
},
to: [
{
key_code: 'tab',
modifiers: ['command'],
},
],
},

//
// control + command
//
Expand Down
Loading