Skip to content

Instantly share code, notes, and snippets.

View Ohmnitude's full-sized avatar
🏠
Working from home

Igor Dash Ohmnitude

🏠
Working from home
  • Psytrance Network
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)