|
| 1 | +--- |
| 2 | +# SPDX-FileCopyrightText: Simon Schneegans <code@simonschneegans.de> |
| 3 | +# SPDX-License-Identifier: CC-BY-4.0 |
| 4 | + |
| 5 | +title: BetterTouchTool (macOS) |
| 6 | +description: A guide on how to use BetterTouchTool to open Kando menus with mouse buttons. |
| 7 | +--- |
| 8 | + |
| 9 | +import { Aside, Tabs, TabItem, LinkButton } from '@astrojs/starlight/components'; |
| 10 | +import { Icon } from 'astro-icon/components'; |
| 11 | +import Intro from '../../components/Intro.astro'; |
| 12 | +import {Image} from 'astro:assets'; |
| 13 | +import btt_config from '../../assets/img/btt_configuration.png'; |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | +<Intro> |
| 18 | + On macOS, you can use a tool called [BetterTouchTool](https://folivora.ai/) to open Kando menus with mouse buttons or trackpad gestures. |
| 19 | +</Intro> |
| 20 | + |
| 21 | +## Overview |
| 22 | +Not every third-party tool supports all functionality, below you can find a short overview about BetterTouchTool: |
| 23 | +* Open Kando Menu ✅ |
| 24 | +* Use Turbo Mode ✅ |
| 25 | + |
| 26 | +## Karabiner-Elements tutorial |
| 27 | +* In BetterTouchTool navigate to the 'Normal Mouse' section (1) |
| 28 | +* Create a Trigger with the mouse button you want to use (in the example it's mouse button 7) |
| 29 | +* Under 'Actions Executed On Press' (2) create a action that 'Send Key Down Only' (3) |
| 30 | +* Under 'Actions Executed On Click RELEASE' create a action that 'Send Key Up Only' |
| 31 | +* Or Copy & Paste the example code below, to send the keyboard shortcut 'CTRL + F13' when pressing the mouse button 7 |
| 32 | +* Adjust the example code to your own needs (if necessary) |
| 33 | + |
| 34 | + |
| 35 | +<Image src={btt_config} alt="" class="shadow"/> |
| 36 | + |
| 37 | +``` |
| 38 | +[ |
| 39 | + { |
| 40 | + "BTTLastUpdatedAt" : 1772350987.4586649, |
| 41 | + "BTTTriggerType" : 1007, |
| 42 | + "BTTTriggerTypeDescriptionReadOnly" : "Button 7", |
| 43 | + "BTTTriggerParentUUID" : "1345F060-135B-4341-B6F0-E7480914A160", |
| 44 | + "BTTTriggerClass" : "BTTTriggerTypeNormalMouse", |
| 45 | + "BTTUUID" : "95B2EC52-89A1-4B3D-A12F-783D55A1DF10", |
| 46 | + "BTTOrder" : 8, |
| 47 | + "BTTActionsToExecute" : [ |
| 48 | + { |
| 49 | + "BTTLastUpdatedAt" : 1772351016.1467381, |
| 50 | + "BTTTriggerParentUUID" : "95B2EC52-89A1-4B3D-A12F-783D55A1DF10", |
| 51 | + "BTTIsPureAction" : true, |
| 52 | + "BTTTriggerClass" : "BTTTriggerTypeNormalMouse", |
| 53 | + "BTTUUID" : "0F38CC89-29A3-45F3-A993-E5C59B206009", |
| 54 | + "BTTLayoutIndependentActionChar" : "F13", |
| 55 | + "BTTGenericActionConfig2" : "onlyDown", |
| 56 | + "BTTShortcutToSend" : "59,105", |
| 57 | + "BTTShortcutUpDown" : "onlyDown", |
| 58 | + "BTTOrder" : 0 |
| 59 | + }, |
| 60 | + { |
| 61 | + "BTTActionCategory" : 31, |
| 62 | + "BTTLastUpdatedAt" : 1772351022.5314541, |
| 63 | + "BTTTriggerParentUUID" : "95B2EC52-89A1-4B3D-A12F-783D55A1DF10", |
| 64 | + "BTTIsPureAction" : true, |
| 65 | + "BTTTriggerClass" : "BTTTriggerTypeNormalMouse", |
| 66 | + "BTTUUID" : "97337D1F-B44B-4F00-B47F-35959C8723D8", |
| 67 | + "BTTLayoutIndependentActionChar" : "F13", |
| 68 | + "BTTGenericActionConfig2" : "onlyUp", |
| 69 | + "BTTShortcutToSend" : "59,105", |
| 70 | + "BTTShortcutUpDown" : "onlyUp", |
| 71 | + "BTTOrder" : 2 |
| 72 | + } |
| 73 | + ] |
| 74 | + } |
| 75 | +] |
| 76 | +``` |
| 77 | +For additional information, follow the [BetterTouchTool community discussion about how to trigger Kando](https://community.folivora.ai/t/hold-keyboard-shortcut-while-mousebutton-is-pressed/46351/2) |
0 commit comments