Skip to content

Instantly share code, notes, and snippets.

@stewart
Created November 13, 2013 00:36
Show Gist options
  • Save stewart/7441489 to your computer and use it in GitHub Desktop.
Save stewart/7441489 to your computer and use it in GitHub Desktop.
Shell function to start Leap Motion detection on OS X
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