Created
November 13, 2013 00:36
-
-
Save stewart/7441489 to your computer and use it in GitHub Desktop.
Shell function to start Leap Motion detection on OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function leap-up() { | |
(sleep 1 && open /Applications/Leap\ Motion.app)& | |
/Applications/Leap\ Motion.app/Contents/MacOS/leapd | |
} | |
function leap-down() { | |
killall leapd | |
killall Leap\ Motion | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment