X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/7af4d439bdb5a2e40aca69446a3367bd71431c45..8657affa2a61e85ca8df76b62e43cb02897d1d80:/config.def.h diff --git a/config.def.h b/config.def.h index 13ea4b9..a2ac963 100644 --- a/config.def.h +++ b/config.def.h @@ -13,9 +13,9 @@ static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; static const char col_cyan[] = "#005577"; static const char *colors[][3] = { - /* fg bg border */ - { col_gray3, col_gray1, col_gray2}, /* normal */ - { col_gray4, col_cyan, col_cyan }, /* selected */ + /* fg bg border */ + [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, + [SchemeSel] = { col_gray4, col_cyan, col_cyan }, }; /* tagging */ @@ -35,6 +35,7 @@ static const Rule rules[] = { static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ +static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ static const Layout layouts[] = { /* symbol arrange function */ @@ -97,7 +98,7 @@ static Key keys[] = { }; /* button definitions */ -/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ +/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ static Button buttons[] = { /* click event mask button function argument */ { ClkLtSymbol, 0, Button1, setlayout, {0} },