Skip to content

Instantly share code, notes, and snippets.

@ctanis
Created November 9, 2021 18:40
Show Gist options
  • Save ctanis/70a2ef077528e5a5c71f8d8473af3e5b to your computer and use it in GitHub Desktop.
Save ctanis/70a2ef077528e5a5c71f8d8473af3e5b to your computer and use it in GitHub Desktop.
use hammerspoon to avoid triggering the menu bar, unless you hold alt
-- don't trigger menubar in fullscreen mode unless you hold alt
stopmenu=hs.eventtap.new({ hs.eventtap.event.types.mouseMoved }, function(e)
local flags=e:getFlags()
if not flags.alt then
if e:location().y<1 then
e:location().y=1
return e
end
end
return nil
end)
stopmenu:start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment