From 3277b150ada21b761b5d5c4c96c9ca9bcf5f2b00 Mon Sep 17 00:00:00 2001 From: Andreev Gregory <1@example.com> Date: Sat, 1 Mar 2025 22:26:26 +0300 Subject: [PATCH] Added my own escape code for Ctrl+; --- config.def.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index 83252c3..c9d6361 100644 --- a/config.def.h +++ b/config.def.h @@ -5,11 +5,12 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; +static char *font = "Liberation Mono:pixelsize=14:antialias=true:autohint=true"; /* Spare fonts */ static char *font2[] = { -/* "Inconsolata for Powerline:pixelsize=12:antialias=true:autohint=true", */ -/* "Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true", */ +// "Inconsolata for Powerline:pixelsize=14:antialias=true:autohint=true" + "Inconsolata for Powerline:pixelsize=14:antialias=true:autohint=true", +// "Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true", }; static int borderpx = 2; @@ -239,7 +240,7 @@ static Shortcut shortcuts[] = { * If you want keys other than the X11 function keys (0xFD00 - 0xFFFF) * to be mapped below, add them to this array. */ -static KeySym mappedkeys[] = { -1 }; +static KeySym mappedkeys[] = {';', -1 }; /* * State bits to ignore when matching key or button events. By default, @@ -462,6 +463,8 @@ static Key key[] = { { XK_F33, XK_NO_MOD, "\033[20;5~", 0, 0}, { XK_F34, XK_NO_MOD, "\033[21;5~", 0, 0}, { XK_F35, XK_NO_MOD, "\033[23;5~", 0, 0}, + // My custom keybindings + { XK_semicolon, ControlMask, "\033[69;50S", 0, 0}, }; /*