mirror of https://github.com/dirtbags/fluffy.git
Update glyphs for 2020
This commit is contained in:
parent
cced62afd7
commit
d9490baf94
24
glyphs.h
24
glyphs.h
|
@ -1,9 +1,27 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
/* These glyphs are in most monospace fonts I tried in 2018 */
|
/* List of visually distinct glyphs.
|
||||||
|
*
|
||||||
|
* The goal here is visually distinct,
|
||||||
|
* not perfect fidelity with the Color Graphics Adapter from 1981,
|
||||||
|
* although it certainly borrows heavily from CP437.
|
||||||
|
* Also I refuse to give up the first 16,
|
||||||
|
* since I've been seeing them for 40 years.
|
||||||
|
*
|
||||||
|
* It's 2021 and the state of monospace glyphs is a mess.
|
||||||
|
* Not that I blame anybody.
|
||||||
|
* The notion of monospacing needs to go away.
|
||||||
|
* I'm going to need to figure out a smarter way to display
|
||||||
|
* grids of characters in a terminal.
|
||||||
|
*
|
||||||
|
* Anyway, this is the best I could get. It looks okay in Cousine.
|
||||||
|
* It looks horrible in Source Code Pro, which I think is borrowing
|
||||||
|
* glyphs from Noto Mono.
|
||||||
|
*
|
||||||
|
* */
|
||||||
const char *fluffyglyphs[] = {
|
const char *fluffyglyphs[] = {
|
||||||
"·", "☺", "☻", "♥", "♦", "♣", "♠", "•", "◘", "○", "◙", "♂", "♀", "♪", "♫", "☼",
|
"·", "☺", "☻", "♥", "♦", "♣", "♠", "•", "◘", "○", "◙", "♂", "♀", "♪", "♫", "☼",
|
||||||
"►", "◄", "↕", "‼", "¶", "§", "▬", "↨", "↑", "↓", "→", "←", "∟", "↔", "▲", "▼",
|
"⏵", "⏴", "↕", "‼", "¶", "§", "‽", "↨", "↑", "↓", "→", "←", "∟", "↔", "⏶", "⏷",
|
||||||
" ", "!", "\"", "#", "$", "%", "&", "'", "(", ")", "*", "+", ",", "-", ".", "/",
|
" ", "!", "\"", "#", "$", "%", "&", "'", "(", ")", "*", "+", ",", "-", ".", "/",
|
||||||
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "?",
|
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "?",
|
||||||
"@", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O",
|
"@", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O",
|
||||||
|
@ -18,5 +36,5 @@ const char *fluffyglyphs[] = {
|
||||||
"└", "┴", "┬", "├", "─", "┼", "╞", "╟", "╚", "╔", "╩", "╦", "╠", "═", "╬", "╧",
|
"└", "┴", "┬", "├", "─", "┼", "╞", "╟", "╚", "╔", "╩", "╦", "╠", "═", "╬", "╧",
|
||||||
"╨", "╤", "╥", "╙", "╘", "╒", "╓", "╫", "╪", "┘", "┌", "█", "▄", "▌", "▐", "▀",
|
"╨", "╤", "╥", "╙", "╘", "╒", "╓", "╫", "╪", "┘", "┌", "█", "▄", "▌", "▐", "▀",
|
||||||
"α", "ß", "Γ", "π", "Σ", "σ", "µ", "τ", "Φ", "Θ", "Ω", "δ", "∞", "φ", "ε", "∩",
|
"α", "ß", "Γ", "π", "Σ", "σ", "µ", "τ", "Φ", "Θ", "Ω", "δ", "∞", "φ", "ε", "∩",
|
||||||
"≡", "±", "≥", "≤", "⌠", "⌡", "÷", "≈", "°", "∀", "∃", "√", "ⁿ", "²", "■", "¤",
|
"≡", "±", "≥", "≤", "⌠", "⌡", "÷", "≈", "°", "∞", "⊻", "√", "ⁿ", "²", "■", "¤",
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue