Skip to content

Commit

Permalink
symbols: Add basic left/right/up/down arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
hpjansson committed Nov 6, 2024
1 parent 838cb4b commit 5290444
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions chafa/internal/chafa-symbols-misc-narrow.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,62 @@
* This is meant to be #included in the symbol definition table of
* chafa-symbols.c. It's kept in a separate file due to its size. */

{
/* Leftwards arrow */
CHAFA_SYMBOL_TAG_TECHNICAL,
0x2190,
CHAFA_SYMBOL_OUTLINE_8X8 (
" "
" X "
" XX "
" XXXXXX "
" XX "
" X "
" "
" ")
},
{
/* Upwards arrow */
CHAFA_SYMBOL_TAG_TECHNICAL,
0x2191,
CHAFA_SYMBOL_OUTLINE_8X8 (
" "
" X "
" XXX "
" XXXXX "
" X "
" X "
" X "
" ")
},
{
/* Rightwards arrow */
CHAFA_SYMBOL_TAG_TECHNICAL,
0x2192,
CHAFA_SYMBOL_OUTLINE_8X8 (
" "
" X "
" XX "
" XXXXXX "
" XX "
" X "
" "
" ")
},
{
/* Downwards arrow */
CHAFA_SYMBOL_TAG_TECHNICAL,
0x2193,
CHAFA_SYMBOL_OUTLINE_8X8 (
" "
" X "
" X "
" X "
" XXXXX "
" XXX "
" X "
" ")
},
{
/* Horizontal Scan Line 1 */
CHAFA_SYMBOL_TAG_TECHNICAL,
Expand Down

0 comments on commit 5290444

Please sign in to comment.