diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-10-03 18:54:12 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-10-03 18:54:12 +0200 |
commit | 2d9745e3fe8e10da0d7fb83539314767fb63ebd0 (patch) | |
tree | d3b3866d36fea5c734b6230e60f6e4d42f29733a | |
parent | 4f63cc9f3b84203fe43e13a7929efb3c97abdcc8 (diff) | |
download | dwm-2d9745e3fe8e10da0d7fb83539314767fb63ebd0.tar.gz dwm-2d9745e3fe8e10da0d7fb83539314767fb63ebd0.tar.bz2 dwm-2d9745e3fe8e10da0d7fb83539314767fb63ebd0.zip |
-rw-r--r-- | config.def.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/config.def.h b/config.def.h index 0e8e3e2..724d52e 100644 --- a/config.def.h +++ b/config.def.h @@ -30,20 +30,23 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask iscentered isfloating isterminal noswallow monitor */ - { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 }, { "Librewolf", NULL, NULL, 1 << 8, 0, 0, 0, 0, -1 }, + { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 }, { "Ghostty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, - { "Orage", NULL, NULL, 0, 0, 1, 0, 1, -1 }, + { "Urxvt", NULL, NULL, 0, 0, 0, 1, 0, -1 }, + { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, { "St", NULL, NULL, 0, 1, 1, 1, 1, -1 }, + { "Orage", NULL, NULL, 0, 0, 1, 0, 1, -1 }, { "Galculator", NULL, NULL, 0, 1, 1, 0, 1, -1 }, - { "Yad", NULL, NULL, 0, 0, 1, 0, 1, -1 }, + { "Nsxiv", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "mpv", NULL, NULL, 0, 1, 1, 0, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, 1, -1 }, /* xev */ }; /* layout(s) */ 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 resizehints = 0; /* 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[] = { @@ -70,12 +73,12 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; -static const char *termcmd[] = { "ghostty", NULL }; -static const char *webcmd[] = { "librewolf", NULL }; +static const char *termcmd[] = { "dwm-terminal", NULL }; +static const char *webcmd[] = { "dwm-browser", NULL }; static const char *menupower[] = { "dmenu-power", NULL }; static const char *menuaudio[] = { "dmenu-audio", NULL }; static const char *menusystem[] = { "dmenu-system", NULL }; -static const char *scratch[] = { "st", "-g", "120x34", NULL }; +static const char *scratch[] = { "st", "-g", "200x34", NULL }; static const Key keys[] = { /* modifier key function argument */ |