| I have two links related to tiled window management: The links are for WM configurations that let you move or resize windows
keeping the corners on a configurable grid: [1] https://github.com/luigirizzo/lrtile-chrome (chrome extension)
Ctrl+Shift+Arrow move the current window, Ctrl+Search+Arrows resize it This works for all Chrome windows so it platform independent.
[2] https://github.com/luigirizzo/lrtile-cinnamon (cinnamon extension, linux)
Alt+Arrows move the current window, Shift+Arrows resize it(I have a similar Javascript configuration for Spectacle, I can post it if there is interest. I believe the javascript is easily portable to other scriptable window managers.) My rationale for developing lrtile is the following: I like having window corners on a grid because it helps locating information. However, in many tiled WMs, resizing one window causes resizing of nearby ones (very distracting) _and_ windows generally do not overlap (a severe limitation especially on small screen). Finally, shortcuts to place windows on half or a quarter of the screen are often built-in (in chrome, windows, spectacle default...) but very few WMs have larger, configurable grids suitable for large monitors (I use a 40" 4K screen). lrtile addresses the above problems as follows: - the grid is configurable;
- movement/resize only affect the current window, allowing overlap if user wants;
- commands are arrows + 1/2 modifiers, and try to be intuitive
- screen borders act as hard stops, also making behavior more intuitive. In detail, I typically use a 6x6 grid on small screens (so I can have halves or thirds) and 12x10 or even bigger on large screens. Each window side must be at least two units, and resize extends or reduces one dimension at a time and by one unit. My typical workflow is to make windows visible with a comfortable size and no overlap, and occasionally expand the window I care about (e.g. make the browser wider when a page does not render well; or expand the editor window vertically when I want to see a larger chunk of code), reverting back when done. The fact that move and resize commands are very similar to other cursor movements makes the operation very quick. |