From 2848c9bb2f3c968028355a172077bb7da9667746 Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Thu, 15 Feb 2024 11:30:59 +0000 Subject: [PATCH] Pushing st changes --- Makefile | 2 +- config.def.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6dfa212..aaa7f00 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ # st - simple terminal # See LICENSE file for copyright and license details. -.POSIX: include config.mk SRC = st.c x.c boxdraw.c OBJ = $(SRC:.c=.o) +PREFIX = /usr/local all: options st diff --git a/config.def.h b/config.def.h index f42642d..25c85f4 100644 --- a/config.def.h +++ b/config.def.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Iosevka Nerd Font-10:antialias=true:autohint=true"; +static char *font = "Iosevka Nerd Font Mono-10:antialias=true:autohint=true"; static char *italicfont = "Latin Modern Mono-10:antialias=true:autohint=true"; static int borderpx = 2; @@ -35,7 +35,7 @@ static float chscale = 1.0; * * More advanced example: L" `'\"()[]{}" */ -wchar_t *worddelimiters = L" "; +wchar_t *worddelimiters = L" │"; /* selection timeouts (in milliseconds) */ static unsigned int doubleclicktimeout = 300;