https://github.com/acsandmann/aerospace-swipe
enables three finger swiping in aerospace
https://github.com/acsandmann/aerospace-swipe
aerospace macos multitouch-api trackpad
Last synced: 6 months ago
JSON representation
enables three finger swiping in aerospace
- Host: GitHub
- URL: https://github.com/acsandmann/aerospace-swipe
- Owner: acsandmann
- License: mit
- Created: 2025-02-04T14:56:02.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-03-31T16:54:15.000Z (6 months ago)
- Last Synced: 2025-03-31T17:43:14.380Z (6 months ago)
- Topics: aerospace, macos, multitouch-api, trackpad
- Language: C
- Homepage:
- Size: 90.8 KB
- Stars: 11
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aerospace workspace switching with trackpad swipes
This project uses an undocumented macOS framework (`MultitouchSupport.framework`) to detect three-finger swipes on your trackpad and switch between workspaces (using the `aerospace` tiling window manager).
## features
- fast swipe detection and forwarding to aerospace (uses aerospace server's socket instead of cli)
- haptics on swipe (must be enabled in configuration)
- customizable swipe directions (natural or inverted)
- swipe will wrap around workspaces (1-9 workspaces, swipe right from 9 will go to 1)## configuration
config file is optional and only needed if you want to change the default settings(default settings are shown in the example below)> to restart after changing the config file, run `make restart`(this just unloads and reloads the launch agent)
```jsonc
// ~/.config/aerospace-swipe/config.json
{
"haptics": false,
"natural_swipe": false,
"wrap_around": true,
"skip_empty": true,
"fingers": 3
}
```## installation
```bash
git clone https://github.com/acsandmann/aerospace-swipe.git
cd aerospace-swipemake install
```
## uninstallation```bash
make uninstall
```