From: Cosmo Borsky Date: Wed, 30 Jan 2019 02:38:32 +0000 (-0500) Subject: Add default value for ignore_ewmh_struts X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=644b9e591a376ece3b676a4266d0c3643f52e335;p=bspwm.git Add default value for ignore_ewmh_struts --- diff --git a/src/settings.c b/src/settings.c index 8dc7ef9..7997c37 100644 --- a/src/settings.c +++ b/src/settings.c @@ -81,6 +81,7 @@ void load_settings(void) swallow_first_click = SWALLOW_FIRST_CLICK; ignore_ewmh_focus = IGNORE_EWMH_FOCUS; ignore_ewmh_fullscreen = IGNORE_EWMH_FULLSCREEN; + ignore_ewmh_struts = IGNORE_EWMH_STRUTS; center_pseudo_tiled = CENTER_PSEUDO_TILED; honor_size_hints = HONOR_SIZE_HINTS; diff --git a/src/settings.h b/src/settings.h index 803b7e1..c205e50 100644 --- a/src/settings.h +++ b/src/settings.h @@ -57,6 +57,7 @@ #define SWALLOW_FIRST_CLICK false #define IGNORE_EWMH_FOCUS false #define IGNORE_EWMH_FULLSCREEN 0 +#define IGNORE_EWMH_STRUTS false #define CENTER_PSEUDO_TILED true #define HONOR_SIZE_HINTS false