Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewguenther/xleapr
My own Leap Motion window management script. Loosely based off of DesktopLeapr
https://github.com/andrewguenther/xleapr
Last synced: about 4 hours ago
JSON representation
My own Leap Motion window management script. Loosely based off of DesktopLeapr
- Host: GitHub
- URL: https://github.com/andrewguenther/xleapr
- Owner: AndrewGuenther
- License: mit
- Created: 2014-01-29T05:19:47.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-05T11:30:01.000Z (over 10 years ago)
- Last Synced: 2024-05-21T06:17:01.234Z (6 months ago)
- Language: Python
- Homepage: www.ajguenther.com/XLeapr
- Size: 3.85 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
XLeapr
=========My own Leap Motion X window management script. Loosely based off of DesktopLeapr.
## Recognized Gestures
* Swipe (up/down/left/right)
* Flip hand (palm up/palm down)
* Clap## Command Configuration
The keypresses initiated by the gestures can be changed with a configuration file.
Example:
```json
{
"flip":["Alt_L", "Tab"],
"swipe":["Control_L", "Alt_L"],
"clap":["Control_L", "Alt_L", "l"]
}
```The keys are all based on their corresponding Xlib enum names. You can find them all here:
https://github.com/Ademan/python-xlib-branch/tree/master/Xlib/keysymdef
## Future Work
* Crunch (In progress, buggy)
* Spin (In progress, buggy)
* Spirit fingers (One day...)