```
hs.window.animationDuration = 0.2 spoon.MiroWindowsManager:bindHotkeys({ up = {hyper, "up"}, right = {hyper, "right"}, down = {hyper, "down"}, left = {hyper, "left"}, fullscreen = {hyper, "f"} })
Works well enough for years.
-- window management hs.loadSpoon("MiroWindowsManager") -- set to 0.x for animation, 0 for none hs.window.animationDuration = 0.3 spoon.MiroWindowsManager:bindHotkeys({ up = { hyper, "k" }, down = { hyper, "j" }, left = { hyper, "h" }, right = { hyper, "l" }, fullscreen = { hyper, "f" }, nextscreen = { hyper, "n" } })
```
hs.window.animationDuration = 0.2 spoon.MiroWindowsManager:bindHotkeys({ up = {hyper, "up"}, right = {hyper, "right"}, down = {hyper, "down"}, left = {hyper, "left"}, fullscreen = {hyper, "f"} })
```
Works well enough for years.