diff options
| author | Devin J. Pohly <djpohly@gmail.com> | 2020-12-24 21:56:41 -0500 | 
|---|---|---|
| committer | Devin J. Pohly <djpohly@gmail.com> | 2020-12-24 21:56:41 -0500 | 
| commit | 206427537a2abd075157e62da09000f2b5aaf42c (patch) | |
| tree | f9241b75f64dbc19b8f6f1babf75a059e02ea234 /config.def.h | |
| parent | cfe78159033968d80a83b7f879f8281267cc2751 (diff) | |
| parent | 3695ac643fb621f9339137afbc274c82ab46d088 (diff) | |
Merge updates from guidocella
Thanks so much for helping to keep the project running while life was
crazy!
Diffstat (limited to '')
| -rw-r--r-- | config.def.h | 14 | 
1 files changed, 8 insertions, 6 deletions
diff --git a/config.def.h b/config.def.h index 76e3c36..64dfea8 100644 --- a/config.def.h +++ b/config.def.h @@ -1,5 +1,5 @@  /* appearance */ -static const int sloppyfocus        = 1;  /* focus follows mouse */ +static const bool sloppyfocus       = true;  /* focus follows mouse */  static const unsigned int borderpx  = 1;  /* border pixel of windows */  static const float rootcolor[]      = {0.3, 0.3, 0.3, 1.0};  static const float bordercolor[]    = {0.5, 0.5, 0.5, 1.0}; @@ -24,7 +24,9 @@ static const Layout layouts[] = {  	{ "[M]",      monocle },  }; -/* monitors */ +/* monitors + * The order in which monitors are defined determines their position. + * Non-configured monitors are always added to the left. */  static const MonitorRule monrules[] = {  	/* name       mfact nmaster scale layout       rotate/reflect */  	/* example of a HiDPI laptop monitor: @@ -42,13 +44,13 @@ static const struct xkb_rule_names xkb_rules = {  	*/  }; -/* Trackpad */ -int tap_to_click = 1; -int natural_scrolling = 1; -  static const int repeat_rate = 25;  static const int repeat_delay = 600; +/* Trackpad */ +static const bool tap_to_click = 1; +static const bool natural_scrolling = 1; +  #define MODKEY WLR_MODIFIER_ALT  #define TAGKEYS(KEY,SKEY,TAG) \  	{ MODKEY,                    KEY,            view,            {.ui = 1 << TAG} }, \  | 
