all repos — openbox @ 8228e90450c147c647465d281fa16caeca07fd10

openbox fork - make it a bit more like ryudo

put back default hardcoded mouse bindings. remove default key bindigns
Dana Jansens danakj@orodu.net
commit

8228e90450c147c647465d281fa16caeca07fd10

parent

cf640af0eade492a6a0a9765a1d2d35d81ea1235

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

jump to
M openbox/config.copenbox/config.c

@@ -760,24 +760,6 @@ const gchar *key;

const gchar *actname; } ObDefKeyBind; -static void bind_default_keyboard() -{ - ObDefKeyBind *it; - ObDefKeyBind binds[] = { - { NULL, NULL }, - { "A-Tab", "NextWindow" }, - { "S-A-Tab", "PreviousWindow" }, - { "A-F4", "Close" }, - { NULL, NULL } - }; - - for (it = binds; it->key; ++it) { - GList *l = g_list_append(NULL, g_strdup(it->key)); - keyboard_bind(l, actions_parse_string(it->actname)); - g_list_free(l); - } -} - typedef struct { const gchar *button;

@@ -790,7 +772,6 @@ static void bind_default_mouse()

{ ObDefMouseBind *it; ObDefMouseBind binds[] = { - { NULL, NULL, 0, NULL }, { "Left", "Client", OB_MOUSE_ACTION_PRESS, "Focus" }, { "Middle", "Client", OB_MOUSE_ACTION_PRESS, "Focus" }, { "Right", "Client", OB_MOUSE_ACTION_PRESS, "Focus" },

@@ -823,10 +804,10 @@ { "Left", "Icon", OB_MOUSE_ACTION_CLICK, "Raise" },

{ "Left", "AllDesktops", OB_MOUSE_ACTION_CLICK, "Raise" }, { "Left", "Shade", OB_MOUSE_ACTION_CLICK, "Raise" }, { "Left", "Close", OB_MOUSE_ACTION_CLICK, "Close" }, - { "Left", "Maximize", OB_MOUSE_ACTION_CLICK, "ToggleMaximizeFull" }, + { "Left", "Maximize", OB_MOUSE_ACTION_CLICK, "Maximize" }, { "Left", "Iconify", OB_MOUSE_ACTION_CLICK, "Iconify" }, - { "Left", "AllDesktops", OB_MOUSE_ACTION_CLICK, "ToggleOmnipresent" }, - { "Left", "Shade", OB_MOUSE_ACTION_CLICK, "ToggleShade" }, + { "Left", "AllDesktops", OB_MOUSE_ACTION_CLICK, "Omnipresent" }, + { "Left", "Shade", OB_MOUSE_ACTION_CLICK, "Shade" }, { "Left", "TLCorner", OB_MOUSE_ACTION_MOTION, "Resize" }, { "Left", "TRCorner", OB_MOUSE_ACTION_MOTION, "Resize" }, { "Left", "BLCorner", OB_MOUSE_ACTION_MOTION, "Resize" },

@@ -901,8 +882,6 @@ parse_register(i, "dock", parse_dock, NULL);

translate_key("C-g", &config_keyboard_reset_state, &config_keyboard_reset_keycode); - - bind_default_keyboard(); parse_register(i, "keyboard", parse_keyboard, NULL);