Compare commits

..

2 Commits

Author SHA1 Message Date
b79d0dafb4 patch dwm-systray-20230922-9f88553 2024-12-07 01:35:22 +01:00
ed57c2cfbe patch dwm-systray-20230922-9f88553.diff 2024-12-07 01:33:49 +01:00

View File

@@ -10,8 +10,8 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
static const int showsystray = 1; /* 0 means no systray */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "JetBrainsMonoNL Nerd Font:size=10" };
static const char dmenufont[] = "JetBrainsMonoNL Nerd Font:size=10";
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";
@@ -50,7 +50,7 @@ static const Layout layouts[] = {
};
/* key definitions */
#define MODKEY Mod4Mask
#define MODKEY Mod1Mask
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \