[hackers] [st] added correct line drawing characters for default font. || Aurélien Aptel

From: <hg_AT_suckless.org>
Date: Tue, 31 Aug 2010 22:30:46 +0000 (UTC)

changeset: 127:41911d8ef8f5
tag: tip
user: Aurélien Aptel <aurelien.aptel_AT_gmail.com>
date: Wed Sep 01 00:30:39 2010 +0200
files: config.def.h
description:
added correct line drawing characters for default font.

diff -r 89ff6952e77c -r 41911d8ef8f5 config.def.h
--- a/config.def.h Tue Aug 31 18:30:18 2010 +0200
+++ b/config.def.h Wed Sep 01 00:30:39 2010 +0200
@@ -1,7 +1,7 @@
 #define TAB 8
 #define TNAME "st-256color"
-#define FONT "6x13"
-#define BOLDFONT "6x13bold"
+#define FONT "-misc-*-medium-r-semicondensed-*-13-*-*-*-*-*-iso8859-*"
+#define BOLDFONT "-misc-*-bold-r-semicondensed-*-13-*-*-*-*-*-iso8859-*"
 #define BORDER 2
 #define SHELL "/bin/sh"
 
@@ -26,7 +26,7 @@
 };
 
 /* Default colors (colorname index) */
-/* foreground, background, cursor, visual bell */
+/* foreground, background, cursor */
 #define DefaultFG 7
 #define DefaultBG 0
 #define DefaultCS 1
@@ -53,38 +53,39 @@
         { XK_F12, "\033[24~" },
 };
 
+/* line drawing characters (sometime specific to each font...) */
 static char gfx[] = {
- ['}'] = 'f',
+ ['+'] = '>',
+ [','] = '<',
+ ['-'] = '^',
         ['.'] = 'v',
- [','] = '<',
- ['+'] = '>',
- ['-'] = '^',
+ ['0'] = '#',
+ ['`'] = 0x01,
+ ['a'] = 0x02,
+ ['f'] = 'o',
+ ['g'] = '+',
         ['h'] = '#',
- ['~'] = 'o',
- ['a'] = ':',
- ['f'] = '\\',
- ['`'] = '+',
- ['z'] = '>',
- ['{'] = '*',
- ['q'] = '-',
         ['i'] = '#',
- ['n'] = '+',
- ['y'] = '<',
- ['m'] = '+',
- ['j'] = '+',
- ['|'] = '!',
- ['g'] = '#',
- ['o'] = '~',
- ['p'] = '-',
- ['r'] = '-',
- ['s'] = '_',
- ['0'] = '#',
- ['w'] = '+',
- ['u'] = '+',
- ['t'] = '+',
- ['v'] = '+',
- ['l'] = '+',
- ['k'] = '+',
- ['x'] = '|',
+ ['j'] = 0x0B,
+ ['k'] = 0x0C,
+ ['l'] = 0x0D,
+ ['m'] = 0x0E,
+ ['n'] = 0x0F,
+ ['o'] = 0x10,
+ ['p'] = 0x11,
+ ['q'] = 0x12,
+ ['r'] = 0x13,
+ ['s'] = 0x14,
+ ['t'] = 0x15,
+ ['u'] = 0x16,
+ ['v'] = 0x17,
+ ['w'] = 0x18,
+ ['x'] = 0x19,
+ ['y'] = 0x1A,
+ ['z'] = 0x1B,
+ ['{'] = 0x1C,
+ ['|'] = 0x1D,
+ ['}'] = 0x1E,
+ ['~'] = 0x1F,
         [255] = 0,
 };
Received on Wed Sep 01 2010 - 00:30:46 CEST

This archive was generated by hypermail 2.2.0 : Wed Sep 01 2010 - 00:36:04 CEST