all repos — openbox @ e8fcc69d4b63f6d8531d93f61ead8eda8f45577d

openbox fork - make it a bit more like ryudo

rename the sendTo action to sendToWorkspace
Dana Jansens danakj@orodu.net
commit

e8fcc69d4b63f6d8531d93f61ead8eda8f45577d

parent

6a8f5f44e123c9ade7964e2051dd0d6a9858961c

3 files changed, 6 insertions(+), 6 deletions(-)

jump to
M util/epist/actions.hhutil/epist/actions.hh

@@ -46,7 +46,7 @@ moveWindowDown,

moveWindowLeft, moveWindowRight, - sendTo, //done + sendToWorkspace, //done nextWindow, //done for now prevWindow, //done for now
M util/epist/epist.ccutil/epist/epist.cc

@@ -124,19 +124,19 @@ _actions.push_back(Action(Action::toggleomnipresent,

XKeysymToKeycode(getXDisplay(), XStringToKeysym("O")), Mod1Mask | ControlMask)); - _actions.push_back(Action(Action::sendTo, + _actions.push_back(Action(Action::sendToWorkspace, XKeysymToKeycode(getXDisplay(), XStringToKeysym("1")), Mod1Mask | ControlMask, 0)); - _actions.push_back(Action(Action::sendTo, + _actions.push_back(Action(Action::sendToWorkspace, XKeysymToKeycode(getXDisplay(), XStringToKeysym("2")), Mod1Mask | ControlMask, 1)); - _actions.push_back(Action(Action::sendTo, + _actions.push_back(Action(Action::sendToWorkspace, XKeysymToKeycode(getXDisplay(), XStringToKeysym("3")), Mod1Mask | ControlMask, 2)); - _actions.push_back(Action(Action::sendTo, + _actions.push_back(Action(Action::sendToWorkspace, XKeysymToKeycode(getXDisplay(), XStringToKeysym("4")), Mod1Mask | ControlMask, 3));
M util/epist/screen.ccutil/epist/screen.cc

@@ -221,7 +221,7 @@ case Action::lower:

window->lower(); return; - case Action::sendTo: + case Action::sendToWorkspace: window->sendTo(it->number()); return;