Skip to content

Instantly share code, notes, and snippets.

@zzamboni
Created June 5, 2017 11:49
Show Gist options
  • Save zzamboni/ab840b85ceb64cfb11b0515a0fe5408f to your computer and use it in GitHub Desktop.
Save zzamboni/ab840b85ceb64cfb11b0515a0fe5408f to your computer and use it in GitHub Desktop.
function doubleClick(e)
local pos=hs.mouse.getAbsolutePosition()
hs.eventtap.event.newMouseEvent(hs.eventtap.event.types.leftMouseDown, pos):setProperty(hs.eventtap.event.properties.mouseEventClickState, 2):post()
hs.eventtap.event.newMouseEvent(hs.eventtap.event.types.leftMouseUp, pos):post()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment