From 5d407b20521db3fb2e188d00423e87c9d9b620f8 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Thu, 11 Apr 2024 16:31:39 +0200 Subject: [PATCH] remove newterm bind, adjust font --- config.h | 5 ++--- patches.h | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index 95485e0..803b1ad 100644 --- a/config.h +++ b/config.h @@ -8,11 +8,11 @@ static char *font = "FiraCode Nerd Font:size=12"; /* Spare fonts */ static char *font2[] = { - "Noto Color Emoji:size=12", + "Noto Color Emoji:size=11", }; -static int borderpx = 0; +static int borderpx = 2; /* modkey options: ControlMask, ShiftMask or XK_ANY_MOD */ static uint url_opener_modkey = XK_ANY_MOD; @@ -282,7 +282,6 @@ static Shortcut shortcuts[] = { { TERMMOD, XK_Prior, zoom, {.f = +3} }, { TERMMOD, XK_Next, zoom, {.f = -3} }, { TERMMOD, XK_Home, zoomreset, {.f = 0} }, - { TERMMOD, XK_Return, newterm, {.i = 0} }, { TERMMOD, XK_C, clipcopy, {.i = 0} }, { TERMMOD, XK_V, clippaste, {.i = 0} }, { TERMMOD, XK_O, changealpha, {.f = +0.05} }, diff --git a/patches.h b/patches.h index 8a96343..7d5c80b 100644 --- a/patches.h +++ b/patches.h @@ -242,7 +242,7 @@ * same CWD (current working directory) as the original st instance. * https://st.suckless.org/patches/newterm/ */ -#define NEWTERM_PATCH 1 +#define NEWTERM_PATCH 0 /* This patch will set the _MOTIF_WM_HINTS property for the st window which, if the window manager * respects it, will show the st window without window decorations.