dwm

X window manager from suckless utilities
git clone git://git.thepablogq.xyz/dwm
Log | Files | Refs | README | LICENSE

commit aac1195fa188c1a34bdd30a01207b1e0bb3d736e
parent c858af2098aef0c49decba220f5049ece34a5fb8
Author: Pablo Garro <pablogq@thepablogq.xyz>
Date:   Mon, 12 Apr 2021 13:35:37 -0600

Minor update

Diffstat:
Mconfig.def.h | 19+++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 2; /* border pixel of windows */ +static const unsigned int borderpx = 3; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const unsigned int gappx = 10; /* gap pixel between windows */ static const int showbar = 1; /* 0 means no bar */ @@ -12,7 +12,8 @@ static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#000000"; -static const char col_cyan[] = "#50fa7b"; +static const char col_green[] = "#50fa7b"; +static const char col_purple[] = "#bd93f9"; static const char col1[] = "#ffffff"; static const char col2[] = "#ffffff"; static const char col3[] = "#ffffff"; @@ -31,7 +32,7 @@ static const char col12[] = "#ffffff"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeSel] = { col_gray4, col_green, col_purple }, [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeCol1] = { col1, col_gray1, col_gray2 }, [SchemeCol2] = { col2, col_gray1, col_gray2 }, @@ -45,12 +46,12 @@ static const char *colors[][3] = { [SchemeCol10] = { col10, col_gray1, col_gray2 }, [SchemeCol11] = { col11, col_gray1, col_gray2 }, [SchemeCol12] = { col12, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeSel] = { col_gray4, col_green, col_purple }, }; /* tagging */ -static const char *tags[] = { "1", "2", "3", "COMM", "FLOAT", "GRHP", "SOUND", "MAIL", "WEB" }; +static const char *tags[] = { "1", "2", "3", "4", "FLOAT", "GRHP", "SOUND", "MAIL", "WEB" }; static const Rule rules[] = { /* xprop(1): @@ -69,8 +70,6 @@ static const Rule rules[] = { { "st-256color", NULL, "pulsemixer",1 << 4, 1, 1 }, { "st-256color", NULL, "pydoro", 1 << 4, 1, 1 }, { "Gtick", NULL, NULL, 1 << 4, 1, 1 }, - { "zoom", NULL, "Zoom Meeting",1 << 3, 0, 0 }, - { "zoom", NULL, NULL, 1 << 4, 1, 0 }, { "discord", NULL, NULL, 1 << 3, 0, 0 }, }; @@ -102,7 +101,7 @@ 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", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_green, "-sf", col_gray4, NULL }; static const char *termcmd[] = { "st", NULL }; static const char *firefox[] = { "firefox", NULL }; static const char *qjack[] = { "qjackctl", NULL }; @@ -144,8 +143,8 @@ static Key keys[] = { { MODKEY, XK_period, focusmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - { MODKEY, XK_minus, setgaps, {.i = -1 } }, - { MODKEY, XK_plus, setgaps, {.i = +1 } }, + { MODKEY|ShiftMask, XK_minus, setgaps, {.i = -1 } }, + { MODKEY|ShiftMask, XK_plus, setgaps, {.i = +1 } }, { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } }, { ControlMask|Mod1Mask, XK_l, spawn, {.v = xflock } }, TAGKEYS( XK_1, 0)