From 73b9143e0794d1bd2a83ba583cb8cd21aea72c52 Mon Sep 17 00:00:00 2001 From: eduuh Date: Thu, 11 Nov 2021 08:09:32 +0300 Subject: [PATCH] changed font to use firacode --- config.h | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/config.h b/config.h index d6eeade..8ba6b55 100644 --- a/config.h +++ b/config.h @@ -1,12 +1,5 @@ -/* See LICENSE file for copyright and license details. */ - -/* - * appearance - * - * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html - */ -static char *font = "mono:pixelsize=12:antialias=true:autohint=true"; -static char *font2[] = { "JoyPixels:pixelsize=10:antialias=true:autohint=true" }; +static char *font = "Fira Code:pixelsize=10:antialias=true:autohint=true"; +static char *font2[] = { "Fira Code:pixelsize=8:antialias=true:autohint=true" }; static int borderpx = 2; /* @@ -257,7 +250,7 @@ static Shortcut shortcuts[] = { { TERMMOD, XK_Next, zoom, {.f = -1} }, { TERMMOD, XK_Home, zoomreset, {.f = 0} }, { TERMMOD, XK_C, clipcopy, {.i = 0} }, - { TERMMOD, XK_V, clippaste, {.i = 0} }, + { TERMMOD, XK_y, clippaste, {.i = 0} }, { MODKEY, XK_c, clipcopy, {.i = 0} }, { ShiftMask, XK_Insert, clippaste, {.i = 0} }, { MODKEY, XK_v, clippaste, {.i = 0} }, @@ -281,9 +274,8 @@ static Shortcut shortcuts[] = { { TERMMOD, XK_J, zoom, {.f = -1} }, { TERMMOD, XK_U, zoom, {.f = +2} }, { TERMMOD, XK_D, zoom, {.f = -2} }, - { MODKEY, XK_l, externalpipe, {.v = openurlcmd } }, - { MODKEY, XK_y, externalpipe, {.v = copyurlcmd } }, - { MODKEY, XK_o, externalpipe, {.v = copyoutput } }, + { ControlMask, XK_l, externalpipe, {.v = openurlcmd } }, + { ControlMask, XK_f, externalpipe, {.v = copyurlcmd } }, }; /* @@ -555,3 +547,4 @@ static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?" "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" "`abcdefghijklmnopqrstuvwxyz{|}~"; +