From 90aa7ddb9cb5b3036b8cc965ebdeb9163dc65837 Mon Sep 17 00:00:00 2001 From: tiyn Date: Sun, 16 Nov 2025 10:26:05 +0100 Subject: [PATCH] set fonts --- config.def.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 34045d6..77552b1 100644 --- a/config.def.h +++ b/config.def.h @@ -8,6 +8,14 @@ static char *font = "mono:pixelsize=16:antialias=true:autohint=true"; static int borderpx = 2; +/* Spare fonts */ +static char *font2[] = { + "JoyPixels:pixelsize=16:antialias=true:autohint=true", + "Symbola:pixelsize=16:antialias=true:autohint=true", + "Source Han Mono:pixelsize=16:antialias=true:autohint=true", + "Source Han Mono K:pixelsize=16:antialias=true:autohint=true", +}; + /* * What program is execed by st depends of these precedence rules: * 1: program passed with -e @@ -174,8 +182,8 @@ static uint forcemousemod = ShiftMask; */ static MouseShortcut mshortcuts[] = { /* mask button function argument release */ - { Button4, XK_NO_MOD, "\031" }, - { Button5, XK_NO_MOD, "\005" }, + // { Button4, XK_NO_MOD, "\031" }, + // { Button5, XK_NO_MOD, "\005" }, { XK_NO_MOD, Button4, kscrollup, {.i = 1} }, { XK_NO_MOD, Button5, kscrolldown,{.i = 1} }, };