diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-07 17:49:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-07 17:49:24 -0500 |
| commit | 055af7faa25e70b7f19bfdad8514ff684de6672d (patch) | |
| tree | 56962ec5459776bd69ffdb5019e9133d71b8baee /dwm/config.def.h | |
| parent | 417c5740bc4cd96e053b5725589fe3c4a835a231 (diff) | |
| parent | 2028ef39f0a65e44213acee2c2bda28006f462a1 (diff) | |
Merge pull request #5 from ihateamongus/codex/analyze-oldresources-folder-for-performance-ljz6ny
Add glass-style transparency and dynamic tags
Diffstat (limited to 'dwm/config.def.h')
| -rw-r--r-- | dwm/config.def.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/dwm/config.def.h b/dwm/config.def.h index 0424ce8..fb3a839 100644 --- a/dwm/config.def.h +++ b/dwm/config.def.h @@ -8,11 +8,12 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=10" }; static const char dmenufont[] = "monospace:size=10"; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; +static const char col_gray1[] = "#000000"; +static const char col_gray2[] = "#555555"; +static const char col_gray3[] = "#dddddd"; +static const char col_gray4[] = "#ffffff"; +static const char col_cyan[] = "#66ccff"; +static const double baropacity = 0.85; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, @@ -97,13 +98,13 @@ static const 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_equal, setgaps, {.i = +1 } }, - { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } }, - { MODKEY, XK_KP_End, spawn, {.v = mediaprev } }, - { MODKEY, XK_KP_Down, spawn, {.v = mediaplaypause } }, - { MODKEY, XK_KP_Page_Down, spawn, {.v = medianext } }, - TAGKEYS( XK_1, 0) + { MODKEY, XK_minus, setgaps, {.i = -1 } }, + { MODKEY, XK_equal, setgaps, {.i = +1 } }, + { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } }, + { MODKEY, XK_KP_End, spawn, {.v = mediaprev } }, + { MODKEY, XK_KP_Down, spawn, {.v = mediaplaypause } }, + { MODKEY, XK_KP_Page_Down, spawn, {.v = medianext } }, + TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2) TAGKEYS( XK_4, 3) |
