Updated dwm

Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
Marcin Woźniak 2021-01-06 23:08:57 +01:00
parent 0ae14c73bb
commit 6d119dd12f
Signed by: y0rune
GPG Key ID: F204C385F57EB348
1 changed files with 12 additions and 16 deletions

View File

@ -1,5 +1,5 @@
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int gappx = 25; /* gaps between windows */
static const unsigned int gappx = 0; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
@ -25,18 +25,15 @@ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
static const Rule rules[] = {
{ "Gkrellm", NULL, NULL, 1 << 0, True, 0 },
{ "Gimp", NULL, NULL, 0, True, 0 },
{ "mpv", NULL, NULL, 0, True, 0 },
{ NULL, NULL, "pulsemixer", 0, True, 0 },
{ "mpv", NULL, NULL, 0, True, 0 },
{ "MuPDF", NULL, NULL, 0, True, 0 },
{ "Brave", NULL, NULL, 1 << 1, False, 0 },
{ "Firefox", NULL, NULL, 1 << 1, False, 0 },
{ "Thunderbird", NULL, NULL, 1 << 2, False, 0 },
{ "Steam", NULL, NULL, 1 << 3, False, 0 },
{ "Lutris", NULL, NULL, 1 << 3, False, 0 },
{ "TeamSpeak 3", NULL, NULL, 1 << 3, False, 0 },
{ "discord", NULL, NULL, 1 << 4, False, 0 },
/*{ "KeePassXC", NULL, NULL, 1 << 7, False, 0 },*/
{ "TeamViewer", NULL, NULL, 1 << 8, False, 0 },
{ "obs", NULL, NULL, 1 << 8, False, 0 },
{ "FreeRDP", NULL, NULL, 1 << 2, False, 0 },
{ "Teams", NULL, NULL, 1 << 4, False, 0 },
{ "Spicy", NULL, NULL, 1 << 2, False, 0 },
};
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
@ -157,4 +154,3 @@ static Button buttons[] = {
{ ClkTagBar, MODKEY, Button1, tag, {0} },
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
};