all repos — fluxbox @ 87c7c80847255e6eddca9b9a819fb031915e8570

custom fork of the fluxbox windowmanager

make reconfig an alias for reconfigure
rathnor rathnor
commit

87c7c80847255e6eddca9b9a819fb031915e8570

parent

48e9c810d769efd733eecd8c3b0ea04b5fb6008e

1 files changed, 3 insertions(+), 2 deletions(-)

jump to
M src/FbCommandFactory.ccsrc/FbCommandFactory.cc

@@ -20,7 +20,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbCommandFactory.cc,v 1.34 2004/08/30 21:29:42 akir Exp $ +// $Id: FbCommandFactory.cc,v 1.35 2004/09/16 14:58:28 rathnor Exp $ #include "FbCommandFactory.hh"

@@ -105,6 +105,7 @@ "prevworkspace",

"quit", "raise", "raiselayer", + "reconfig", "reconfigure", "reloadstyle", "resizeto",

@@ -165,7 +166,7 @@ // WM commands

// if (command == "restart") return new RestartFluxboxCmd(arguments); - else if (command == "reconfigure") + else if (command == "reconfigure" || command == "reconfig") return new ReconfigureFluxboxCmd(); else if (command == "setstyle") return new SetStyleCmd(arguments);