hs.tiling icon indicating copy to clipboard operation
hs.tiling copied to clipboard

Add tiling window management powers to your hammerspoon

Results 5 hs.tiling issues
Sort by recently updated
recently updated
newest added

Hi @dsanson Now `focusedWindow `is a constructor type, in stead of a method. In [hammerspoon manual ](http://www.hammerspoon.org/docs/hs.window.html#focusedWindow) it is define like this: ``` hs.window.focusedWindow() -> window ``` I tested on...

Hi, I want to tiling tile-less windows, e.g., iTerm2. I have commented out the `hasTile` line in the `isWindowIncluded` function of file `init.lua`. But it does not work out. Any...

Hello, I just installed the plugin and bound it as follows: ``` k = hs.hotkey.modal.new({}, "F17") --- Tiling k:bind({}, "c", nil, function() tiling.cycleLayout() end) k:bind({}, "j", nil, function() tiling.cycle(1) end)...

when using `hs.tiling.cycle` to cycle through the windows, it cycles between windows (as expected) but also sets the layout. I suspect that this might be the desired behavior for layouts...

Hi! Great work you did there, I’m using it all the time! Alas, I do not fully understand how you could add a new custom layout. Mind helping me or...