all repos — openbox @ 5b91573e0c01a7ee6e504451c2ef3143709d06a2

openbox fork - make it a bit more like ryudo

implement window resizing
Dana Jansens danakj@orodu.net
commit

5b91573e0c01a7ee6e504451c2ef3143709d06a2

parent

6595476d81f01cee9001bbc90dda5b37915e5821

1 files changed, 16 insertions(+), 0 deletions(-)

jump to
M util/epist/epist.ccutil/epist/epist.cc

@@ -134,6 +134,22 @@ _actions.push_back(Action(Action::moveWindowRight,

XKeysymToKeycode(getXDisplay(), XStringToKeysym("Right")), Mod1Mask | ControlMask, 1)); + _actions.push_back(Action(Action::resizeWindowHeight, + XKeysymToKeycode(getXDisplay(), + XStringToKeysym("Up")), + ShiftMask | Mod1Mask | ControlMask, -1)); + _actions.push_back(Action(Action::resizeWindowHeight, + XKeysymToKeycode(getXDisplay(), + XStringToKeysym("Down")), + ShiftMask | Mod1Mask | ControlMask, 1)); + _actions.push_back(Action(Action::resizeWindowWidth, + XKeysymToKeycode(getXDisplay(), + XStringToKeysym("Left")), + ShiftMask | Mod1Mask | ControlMask, -1)); + _actions.push_back(Action(Action::resizeWindowWidth, + XKeysymToKeycode(getXDisplay(), + XStringToKeysym("Right")), + ShiftMask | Mod1Mask | ControlMask, 1)); _actions.push_back(Action(Action::iconify, XKeysymToKeycode(getXDisplay(), XStringToKeysym("I")),