See the guide and api for btt.js
.
This package is a handy wrapper over BetterTouchTool built in webserver API. (by @Andreas Hegenberg)
This package will allow you to automate you MacOS-running machine using JavaScript. You'll be able to:
and anything else that BetterTouchTool or the JavaScript specification will allow you to do!
This package provides its own type definitions and can be run both on browser (using module bundlers) and in a nodejs environment.
This package depends on the application BetterTouchTool in at least version v2.0.0, you need to have it installed and running before going further.
Then, please enable and configure the webserver in the BetterTouchTool preferences. You're now ready to go!
npm install btt
First, create a btt instance passing the required data for BTT webserver.
// import Btt class from the package
import { Btt } from 'btt';
// create an instance representing btt webserver
// can be remote or local
const btt = new Btt({
domain: '127.0.0.1',
port: 8000,
protocol: 'http',
version: '2.525',
});
Now you can invoke the actions - there are plenty of ways to do it, and all are promise-based.
// sequentially run three actions - spotlight, type text and night shift
// as all actions are promise-based, you can use async/await notation without hassle
btt
.triggerShortcut('cmd+space').invoke()
.then(() => btt.sendText({ text: 'Hello world!'}).invoke())
.then(() => btt.toggleNightShift().invoke());
// every single action returns a CallResult object containing information about the Call
interface CallResult {
time: number; // contains time in MS that this action took to perform (including fetch time)
status: number; // contains an HTTP status / string
value: any; // depending on the method used, may return an array, object or fetch result
note?: string; // an additional note for the user
}
// you can also use a custom chain method to simplify even more and avoid using async/await
btt
.invokeChain() // 1)
.triggerShortcut('cmd+space') // 2)
.sendText({text: 'Hello world!'}) // 3)
.wait(1000) // 4)
.toggleNightShift() // 5)
.call() // 6)
.then(v => console.info(v)) // 7)
// Explanation:
// 1) Starts method chaining
// 2) Action that a user wants to perform
// 3) Action that a user wants to perform
// 4) Additional method available in chain only - wait before triggering next action
// 5) Action that a user wants to perform
// 6) Invokes all previously-defined actions, ensuring the execution order
// 7) Returns a promise that resolves once all of the actions are fulfilled.
// Contains information about the status of the chain (time, value, status)
You can even register a system-wide event listener within BTT that'll trigger particular actions
// creates a trigger in BetterTouchTool. Keep in mind that this is persistent until you manually delete it!
btt.addTriggerAction('oneFingerForceClick', (ev) => {
// create a list of actions that you want to perform on single finger force click
const actionsToInvoke = [
btt.showHUD({
title: 'Wow!',
details: 'I triggered! 😍',
}),
];
// and push them to `actions` property in the event object.
ev.actions.push(...actionsToInvoke);
});
// you can also delete an event listener - trigger:
btt.removeTriggerAction('oneFingerForceClick', callbackFuntion);
The above method will trigger the callback upon running your script, not when a particular event really occurs. If you need to call a function upon event recognition, you need to use btt-node-server and use the addEventListener
and removeEventListener
methods on the btt instance. The callback you provide will run in the nodejs environment, within vm
.
const btt = new Btt({
domain: '127.0.0.1',
port: 8000,
protocol: 'http',
version: '2.525',
// pass eventServer to use this part of the lib
eventServer: {
domain: 'localhost',
port: 8888,
},
});
// adds real event listener, that'll run once event occurs
btt.addEventListener('cmd+ctrl+alt+u', async (ev) => {
// write the code as you'd normally do -> trigger the action for some interval
const intervalID = setInterval(() => {
btt.showHUD({ title: 'It works!'}).invoke();
}, 1000);
// you can use fetch API here or anything that your node version will support
// stops the interval after 10 seconds
await new Promise((res, rej) => {
setTimeout(() => {
clearTimeout(intervalID);
res();
}, 10000);
});
// the value you return from the callback will be the response of the btt-node-server
return { messsage: 'Hello world!' };
});
To get all available events, you have to look in the enums (list of all valid events will be available soon).
Most of the time you can just guess because all event names are the lowercased equivalent of the triggers from within BetterTouchTool
.
For use within the browser, you can get the url
that lies behind all actions and assign it to some <a href="${link}">Link</a>
. To get link
you simply need to read the .url
property of any action:
console.log(
btt.triggerShortcut('cmd+space').url
);
If you want to have a peak at the generated action JSON, or want to share it with others who use BetterTouchTool
you can read the .json
property of any action.
console.log(
btt.showHUD({ title: 'Hello!' }).json
);
For more advanced examples visit the example section
Keep in mind that this module only provides handy utility functions that send requests to BTT built in webserver. So depending on your BTT version, some actions may be glitchy. Do not hestitate to report those issues here or in the official BTT community forum.
Also, keep in mind that accessing any kind of low level APIs from JS may be dangerous, make sure to stay secure