aboutsummaryrefslogtreecommitdiff
path: root/st_config.h
diff options
context:
space:
mode:
authorXander Swan <email>2025-12-03 10:00:42 -0500
committerXander Swan <email>2025-12-03 10:00:42 -0500
commitc7c1a753c06061ff3eaf81e32b2e9e3481e275c2 (patch)
tree3d81c986928a986e8547bee23563eb38a52df7a1 /st_config.h
parent6c460ad5c10f7c0549ccade4c8bccaf4cfa3d784 (diff)
update
Diffstat (limited to 'st_config.h')
-rw-r--r--st_config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/st_config.h b/st_config.h
index 234b94d..e8d23a9 100644
--- a/st_config.h
+++ b/st_config.h
@@ -5,7 +5,7 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char *font = "JetBrainsMono Nerd Font:style=Medium:pixelsize=18:antialias=true:autohint=true";
+static char *font = "JetBrainsMono Nerd Font:pixelsize=12:antialias=true:autohint=true";
static int borderpx = 2;
/*
@@ -196,6 +196,8 @@ static Shortcut shortcuts[] = {
{ TERMMOD, XK_Prior, zoom, {.f = +1} },
{ TERMMOD, XK_Next, zoom, {.f = -1} },
{ TERMMOD, XK_Home, zoomreset, {.f = 0} },
+ { ShiftMask, XK_Page_Up, kscrollup, {.i = 5} },
+ { ShiftMask, XK_Page_Down, kscrolldown, {.i = 5} },
{ TERMMOD, XK_C, clipcopy, {.i = 0} },
{ TERMMOD, XK_V, clippaste, {.i = 0} },
{ TERMMOD, XK_Y, selpaste, {.i = 0} },