On Sat, Oct 14, 2006 at 04:12:53PM +0300, Alexandru E. Ungur wrote:
> Now I can resize from keyboard in WMII as well :) It has some quirks, in 
> particular it won't work if you try it on the rightmost column, also it only
> works nice for the first window in a column, but it still beats mouse for
> me :)

Try using both a negative and positive value in the `Up` and `Left` keybindings.
This will then let you resize the bottommost and rightmost windows.

  $MODKEY-Control-Left)
      xwrite /view/sel/sel/geom -10 +0 +10 +0;;
  $MODKEY-Control-Right)
      xwrite /view/sel/sel/geom +0 +0 +10 +0;;
  $MODKEY-Control-Up)
      xwrite /view/sel/sel/geom +0 -10 +0 +10;;
  $MODKEY-Control-Down)
      xwrite /view/sel/sel/geom +0 +0 +0 +10;;

So, basically, it becomes a directional grow command.  If you are in the
leftmost window and you hit MOD-Ctrl-Left, there's nowhere to grow, it'll do
nothing.

_why

Reply via email to