From e4b205a898cf473b6d06d1c025eca67b8b2394b1 Mon Sep 17 00:00:00 2001 From: Justin Gassner Date: Wed, 13 Mar 2024 23:56:23 +0100 Subject: config --- config.def.h | 8 ++++---- config.mk | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/config.def.h b/config.def.h index 9fb83f9..d996748 100644 --- a/config.def.h +++ b/config.def.h @@ -5,8 +5,8 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; -static int borderpx = 2; +static char *font = "xos4 Terminus:pixelsize=28:style=bold"; +static int borderpx = 1; /* * What program is execed by st depends of these precedence rules: @@ -16,7 +16,7 @@ static int borderpx = 2; * 4: value of shell in /etc/passwd * 5: value of shell in config.h */ -static char *shell = "/bin/sh"; +static char *shell = "/bin/bash"; char *utmp = NULL; /* scroll program: to enable use a string like "scroll" */ char *scroll = NULL; @@ -139,7 +139,7 @@ static unsigned int defaultrcs = 15; * 6: Bar ("|") * 7: Snowman ("☃") */ -static unsigned int cursorshape = 2; +static unsigned int cursorshape = 4; /* * Default columns and rows numbers diff --git a/config.mk b/config.mk index fdc29a7..0af7be4 100644 --- a/config.mk +++ b/config.mk @@ -4,11 +4,11 @@ VERSION = 0.9.2 # Customize below to fit your system # paths -PREFIX = /usr/local +PREFIX = /usr MANPREFIX = $(PREFIX)/share/man -X11INC = /usr/X11R6/include -X11LIB = /usr/X11R6/lib +X11INC = /usr/include/X11 +X11LIB = /usr/lib/X11 PKG_CONFIG = pkg-config -- cgit v1.2.3-54-g00ecf