mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-03 02:11:09 +02:00
changed font to use firacode
This commit is contained in:
parent
e053bd6036
commit
73b9143e07
1 changed files with 6 additions and 13 deletions
19
config.h
19
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{|}~";
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue