You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used to intercept mission control button using this code and it does not seem to work anymore after 15.6 upgrade:
local keyboardHandler = function(event)
local keyCode = event:getKeyCode()
if keyCode == 160 then
moveToNextScreen()
return true
end
end
keyboardEventListener = hs.eventtap.new({
hs.eventtap.event.types.keyDown
}, keyboardHandler)
keyboardEventListener:start()
I checked and this shortcut is still not enabled in Settings (I disabled it some time ago), so it should not overlap. What can I try?