http://mcolxyzogp3cy4czf52oa2svu2vjge3otm3shxmtvwshyum47sis3iid.onion/code/qtools/commit/378c91408fe31379d5e46f077a6dbd8394256063.html
Focussing is based +entirely on position and geometry, so is independent of screens, layouts and whether +windows are floating or tiled. + +Example usage: binding a key to lazy.function(qtools.focus.right) + " " " + + +def up(qtile): + _focus_window(qtile, -1, ' y ' ) + + +def down(qtile): + _focus_window(qtile, 1, ' y ' ) + + +def left(qtile): + _focus_window(qtile, -1, ' x ' ) + + +def right(qtile): + _focus_window(qtile, 1, ' x ' ) + + +def...