From d7c7d24824d2dc3121739eeadb7452bd804290ce Mon Sep 17 00:00:00 2001 From: davidpkj Date: Wed, 15 Feb 2023 10:55:53 +0100 Subject: Change: config.def.h --- config.def.h | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/config.def.h b/config.def.h index 37b85d1..32849ca 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 = "JetBrains Mono:size=19:pixelsize=24:antialias=true:autohint=true"; +static int borderpx = 19; /* * What program is execed by st depends of these precedence rules: @@ -65,19 +65,20 @@ static unsigned int blinktimeout = 800; /* * thickness of underline and bar cursors */ -static unsigned int cursorthickness = 2; +static unsigned int cursorthickness = 3; /* * bell volume. It must be a value between -100 and 100. Use 0 for disabling * it */ -static int bellvolume = 0; +static int bellvolume = 1; /* visual-bell timeout in ms (0 to disable visual-bell) */ -static int vbelltimeout = 150; +static int vbelltimeout = 50; /* choose predefined visual-bell cells to inverse, or define your own logic */ -#define VBCELL x==0 || x==right || y==0 || y==bottom /* border */ +#define VBCELL y==bottom +// #define VBCELL x==0 || x==right || y==0 || y==bottom /* border */ // #define VBCELL 1 /* all cells - whole screen */ // #define VBCELL y==bottom && x>right-2 /* bottom-right */ @@ -155,15 +156,15 @@ static unsigned int defaultrcs = 257; * 7: blinking st cursor * 8: steady st cursor */ -static unsigned int cursorstyle = 1; +static unsigned int cursorstyle = 5; static Rune stcursor = 0x2603; /* snowman ("☃") */ /* * Default columns and rows numbers */ -static unsigned int cols = 80; -static unsigned int rows = 24; +static unsigned int cols = 90; +static unsigned int rows = 22; /* * Default colour and shape of the mouse cursor @@ -219,9 +220,9 @@ static Shortcut shortcuts[] = { { TERMMOD, XK_Y, selpaste, {.i = 0} }, { ShiftMask, XK_Insert, selpaste, {.i = 0} }, { TERMMOD, XK_Num_Lock, numlock, {.i = 0} }, - { ShiftMask, XK_Page_Up, kscrollup, {.i = -1} }, - { ShiftMask, XK_Page_Down, kscrolldown, {.i = -1} }, - { TERMMOD, XK_l, copyurl, {.i = 0} }, + { ShiftMask, XK_Up, kscrollup, {.i = -1} }, + { ShiftMask, XK_Down, kscrolldown, {.i = -1} }, + { TERMMOD, XK_space, copyurl, {.i = 0} }, }; /* -- cgit v1.2.3