DWM config, picom improvements and fix border alpha for DMW

This commit is contained in:
2024-06-03 15:01:56 +01:00
parent 86f80a314a
commit 8681901e87
6 changed files with 89 additions and 38 deletions

View File

@@ -14,9 +14,10 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "JetBrainsMono NF:size=20" };
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { "#ebdbb2", "#282828", "#1d2021" },
[SchemeSel] = { "#282828", "#ebdbb2", "#ebdbb2" },
/* fg bg border */
[SchemeNorm] = { "#ebdbb2", "#282828", "#1d2021" },
[SchemeSel] = { "#282828", "#ebdbb2", "#ebdbb2" },
[SchemeTitle] = { "#ebdbb2", "#282828", "#1d2021" },
};
/* tagging */
@@ -47,7 +48,7 @@ static const Layout layouts[] = {
};
/* key definitions */
#define MODKEY Mod1Mask
#define MODKEY Mod4Mask
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \