X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.h;h=0e04ab1751ecd27296b1d28c4cbc1f9f4aa4bac8;hb=e6b3f5c755349ba7a339dd43958870e4cceb57bf;hp=67c854e36e28ad151eae78a18812a9217f0b64f1;hpb=4e6915a16b75c1e79142e15a9b23e761140d4e9b;p=st.git diff --git a/config.h b/config.h index 67c854e..0e04ab1 100644 --- a/config.h +++ b/config.h @@ -3,7 +3,7 @@ #define FONT "fixed" #define BORDER 3 -#define LINESPACE 1 /* additional pixel between each line */ +#define LINESPACE 0 /* additional pixel between each line */ /* Terminal colors */ static const char *colorname[] = { @@ -36,3 +36,38 @@ static Key key[] = { { XK_Up, "\033[A" }, { XK_Down, "\033[B" }, }; + +static char gfx[] = { + ['}'] = 'f', + ['.'] = 'v', + [','] = '<', + ['+'] = '>', + ['-'] = '^', + ['h'] = '#', + ['~'] = 'o', + ['a'] = ':', + ['f'] = '\\', + ['`'] = '+', + ['z'] = '>', + ['{'] = '*', + ['q'] = '-', + ['i'] = '#', + ['n'] = '+', + ['y'] = '<', + ['m'] = '+', + ['j'] = '+', + ['|'] = '!', + ['g'] = '#', + ['o'] = '~', + ['p'] = '-', + ['r'] = '-', + ['s'] = '_', + ['0'] = '#', + ['w'] = '+', + ['u'] = '+', + ['t'] = '+', + ['v'] = '+', + ['l'] = '+', + ['k'] = '+', + ['x'] = '|', +};