Skip to content

Instantly share code, notes, and snippets.

View raxigan's full-sized avatar

Mateusz raxigan

  • Kraków, Poland
  • 11:17 (UTC +02:00)
View GitHub Profile
@raxigan
raxigan / init.lua
Created March 31, 2022 05:19
Hammerspoon script to disable Mission Control on macOS
disableTopScreenEdgeForDragging = hs.eventtap.new({ hs.eventtap.event.types.leftMouseDragged }, function(e)
local loc = e:location()
if loc.y == 0.0 then
hs.mouse.setAbsolutePosition({ x = loc.x, y = 0.01 },
1337 -- a hack, do not remove
)
end
end)