summaryrefslogtreecommitdiff
path: root/.suckless/dwm/config.h
diff options
context:
space:
mode:
Diffstat (limited to '.suckless/dwm/config.h')
-rw-r--r--.suckless/dwm/config.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/.suckless/dwm/config.h b/.suckless/dwm/config.h
index f28f472..0d330d3 100644
--- a/.suckless/dwm/config.h
+++ b/.suckless/dwm/config.h
@@ -6,8 +6,8 @@ static const unsigned int gappx = 5; /* 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 */
-static const char *fonts[] = { "monospace:size=10" };
-static const char dmenufont[] = "monospace:size=10";
+static const char *fonts[] = { "monospace:size=14", "NotoColorEmoji:pixelsize=14:antialias=true:autohint=true" };
+static const char dmenufont[] = "monospace:size=14";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
@@ -20,7 +20,7 @@ static const char *colors[][3] = {
};
/* tagging */
-static const char *tags[] = { "一", "二", "三", "四", "五", "六", "七", "八", "九" };
+static const char *tags[] = { "一", "二", "三", "四", "五" };
static const Rule rules[] = {
/* xprop(1):
@@ -30,6 +30,8 @@ static const Rule rules[] = {
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 },
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
+ { "glances", "glances", NULL, 1<<1, 0, -1 },
+
};
/* layout(s) */
@@ -74,7 +76,7 @@ static const Key keys[] = {
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
-{ MODKEY, XK_Return, zoom, {0} },
+{ MODKEY, XK_z, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_q, killclient, {0} },
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },