diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-06-09 18:04:41 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-06-09 18:04:41 +0200 |
commit | a7b25e71789a95aba81291d93b908fb77523966e (patch) | |
tree | a1c5c7517aa8712ff5469f3073f47daec1b35655 | |
parent | d73f8ed0d94e271f331fe887908cf1baa9e45f30 (diff) | |
download | dwm-a7b25e71789a95aba81291d93b908fb77523966e.tar.gz dwm-a7b25e71789a95aba81291d93b908fb77523966e.tar.bz2 dwm-a7b25e71789a95aba81291d93b908fb77523966e.zip |
update
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | config.def.h | 4 | ||||
-rw-r--r-- | config.h | 6 |
3 files changed, 7 insertions, 4 deletions
@@ -15,4 +15,3 @@ - hide vacant tags - statuscmd - center -- ewmhtags diff --git a/config.def.h b/config.def.h index 1b5af34..8768293 100644 --- a/config.def.h +++ b/config.def.h @@ -32,8 +32,9 @@ static const Rule rules[] = { /* class instance title tags mask iscentered isfloating isterminal noswallow monitor */ { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 }, { "Librewolf", NULL, NULL, 1 << 8, 0, 0, 0, 0, -1 }, - { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, + { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, { "Orage", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "st-256color", NULL, NULL, 0, 1, 1, 1, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, 1, -1 }, /* xev */ }; @@ -77,6 +78,7 @@ static const Key keys[] = { { MODKEY, XK_x, spawn, SHCMD("dmenu-power") }, { MODKEY, XK_a, spawn, SHCMD("dmenu-audio") }, { MODKEY, XK_s, spawn, SHCMD("dmenu-system") }, + { MODKEY, XK_Delete, spawn, SHCMD("st -g 120x34") }, { MODKEY, XK_d, incnmaster, {.i = -1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, @@ -7,7 +7,7 @@ static const unsigned int snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "Iosevka Nerd Font Regular:size=11","JoyPixels:pixelsize=10:antialias=true:autohint=true" }; +static const char *fonts[] = { "Iosevka Nerd Font Regular:size=11","JoyPixels:pixelsize=12:antialias=true:autohint=true" }; static const char dmenufont[] = "Iosevka Nerd Font Mono:size=11"; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; @@ -32,8 +32,9 @@ static const Rule rules[] = { /* class instance title tags mask iscentered isfloating isterminal noswallow monitor */ { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 }, { "Librewolf", NULL, NULL, 1 << 8, 0, 0, 0, 0, -1 }, - { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, + { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, { "Orage", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "st-256color", NULL, NULL, 0, 1, 1, 1, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, 1, -1 }, /* xev */ }; @@ -77,6 +78,7 @@ static const Key keys[] = { { MODKEY, XK_x, spawn, SHCMD("dmenu-power") }, { MODKEY, XK_a, spawn, SHCMD("dmenu-audio") }, { MODKEY, XK_s, spawn, SHCMD("dmenu-system") }, + { MODKEY, XK_Delete, spawn, SHCMD("st -g 120x34") }, { MODKEY, XK_d, incnmaster, {.i = -1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, |