diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-06-09 17:16:46 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-06-09 17:16:46 +0200 |
commit | d85ac2a39e477c4151ef1404b5204231f6ef5c2c (patch) | |
tree | b8e4d46d57afb8f6edc0249ab04b02c653970453 /config.def.h | |
parent | c5bb7db6bbd0beba0dbdc98cd60cb0d3ea69e7c2 (diff) | |
download | dwm-d85ac2a39e477c4151ef1404b5204231f6ef5c2c.tar.gz dwm-d85ac2a39e477c4151ef1404b5204231f6ef5c2c.tar.bz2 dwm-d85ac2a39e477c4151ef1404b5204231f6ef5c2c.zip |
update
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/config.def.h b/config.def.h index 2dfba63..1b5af34 100644 --- a/config.def.h +++ b/config.def.h @@ -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"; @@ -22,7 +22,7 @@ static char *colors[][3] = { }; /* tagging */ -static const char *tags[] = { "1" ,"2", "3", "4", "5", "6", "7", "8", "9" }; +static char *tags[] = { "1" ,"2", "3", "4", "5", "6", "7", "8", "9" }; static const Rule rules[] = { /* xprop(1): @@ -32,8 +32,8 @@ 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 }, - { "Orage", NULL, NULL, 0, 0, 1, 0, 1, -1 }, + { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, + { "Orage", NULL, NULL, 0, 1, 1, 0, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, 1, -1 }, /* xev */ }; @@ -73,9 +73,10 @@ static const Key keys[] = { /* modifier key function argument */ { MODKEY, XK_p, spawn, {.v = dmenucmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } }, - { MODKEY, XK_w, spawn, SHCMD("librewolf") }, + { MODKEY, XK_BackSpace, spawn, SHCMD("librewolf") }, { MODKEY, XK_x, spawn, SHCMD("dmenu-power") }, - { MODKEY, XK_s, spawn, SHCMD("dmenu-audio") }, + { MODKEY, XK_a, spawn, SHCMD("dmenu-audio") }, + { MODKEY, XK_s, spawn, SHCMD("dmenu-system") }, { MODKEY, XK_d, incnmaster, {.i = -1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, @@ -112,7 +113,7 @@ static const Key keys[] = { { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("brightnessctl set 10%-") }, { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("brightnessctl set 10%+") }, { 0, XF86XK_Launch1, spawn, SHCMD("dmenu-power") }, - { 0, XK_Print, spawn, SHCMD("screenshot") }, + { 0, XK_Print, spawn, SHCMD("dwm-screenshot") }, TAGKEYS( XK_ampersand, 0) TAGKEYS( XK_eacute, 1) TAGKEYS( XK_quotedbl, 2) |