diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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=12:antialias=true:autohint=true" }; +static const char *fonts[] = { "Iosevka Nerd Font Regular:size=11","JoyPixels:size=11:antialias=true:autohint=true" }; static const char dmenufont[] = "Iosevka Nerd Font Mono:size=11"; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; @@ -33,9 +33,10 @@ static const Rule rules[] = { { "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, 1, 1, 0, 1, -1 }, - { "st-256color", NULL, NULL, 0, 1, 1, 1, 1, -1 }, - { "galculator", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "Orage", NULL, NULL, 0, 0, 1, 0, 1, -1 }, + { "St", NULL, NULL, 0, 1, 1, 1, 1, -1 }, + { "Galculator", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "Yad", NULL, NULL, 0, 0, 1, 0, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, 1, -1 }, /* xev */ }; @@ -110,7 +111,6 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_Up, rotatestack, {.i = +1 } }, { MODKEY|ShiftMask, XK_Down, rotatestack, {.i = -1 } }, { MODKEY|ShiftMask, XK_q, quit, {0} }, - { MODKEY|ControlMask|ShiftMask, XK_q, quit, {1} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY|ShiftMask, XK_agrave, tag, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, |