X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=settings.c;h=7e509dd11a5af34996da7c6c338e5250b38c3dea;hb=a7821774c50aefa8c758b964814818b4634b77ce;hp=5ed2ed3e5783c66448e081b705c64979c9f0c3df;hpb=b1d96531c4e5be64d9b985886d4b1ba7e3c37f65;p=bspwm.git diff --git a/settings.c b/settings.c index 5ed2ed3..7e509dd 100644 --- a/settings.c +++ b/settings.c @@ -50,10 +50,16 @@ void load_settings(void) snprintf(focused_border_color, sizeof(focused_border_color), "%s", FOCUSED_BORDER_COLOR); snprintf(presel_feedback_color, sizeof(presel_feedback_color), "%s", PRESEL_FEEDBACK_COLOR); + padding = (padding_t) PADDING; window_gap = WINDOW_GAP; border_width = BORDER_WIDTH; split_ratio = SPLIT_RATIO; initial_polarity = FIRST_CHILD; + pointer_modifier = POINTER_MODIFIER; + + pointer_actions[0] = ACTION_MOVE; + pointer_actions[1] = ACTION_RESIZE_SIDE; + pointer_actions[2] = ACTION_RESIZE_CORNER; borderless_monocle = BORDERLESS_MONOCLE; gapless_monocle = GAPLESS_MONOCLE; @@ -62,9 +68,10 @@ void load_settings(void) focus_follows_pointer = FOCUS_FOLLOWS_POINTER; pointer_follows_focus = POINTER_FOLLOWS_FOCUS; pointer_follows_monitor = POINTER_FOLLOWS_MONITOR; - history_aware_focus = HISTORY_AWARE_FOCUS; ignore_ewmh_focus = IGNORE_EWMH_FOCUS; center_pseudo_tiled = CENTER_PSEUDO_TILED; + click_to_focus = CLICK_TO_FOCUS; + honor_size_hints = HONOR_SIZE_HINTS; remove_disabled_monitors = REMOVE_DISABLED_MONITORS; remove_unplugged_monitors = REMOVE_UNPLUGGED_MONITORS; merge_overlapping_monitors = MERGE_OVERLAPPING_MONITORS;