diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2021-07-08 13:01:33 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2021-07-08 13:01:33 +0200 |
commit | 447dbd08e895dc81364f821ac204574c068ce960 (patch) | |
tree | 59cba12cdbb271a187fcf5e0f02e676a61f5fc6b /glyphs |
First commit
Diffstat (limited to 'glyphs')
-rw-r--r-- | glyphs/en.scm | 16 | ||||
-rw-r--r-- | glyphs/es.scm | 2 |
2 files changed, 18 insertions, 0 deletions
diff --git a/glyphs/en.scm b/glyphs/en.scm new file mode 100644 index 0000000..c84dc2c --- /dev/null +++ b/glyphs/en.scm @@ -0,0 +1,16 @@ +;https://unicode-table.com/en/2B7E/ + +(define letters (string->list "ABCDEFGHIJKLMNOPQRSTUVWXYZ")) +(define numbers (string->list "1234567890")) +(define brackets (string->list "()[]{}<>")) +(define symbols (string->list "+-*\\|@#~$%&^`´\"'")) +(define punct (string->list ",.")) + +(define key-symbols (string->list "⇧⇧⇪⏎⌫←↑→↓⭾")) +(define modifiers '("Ctrl" "Ctrl" "Alt" "AltGr" "Esc" "Del")) + +;(define fn '("Fn")) +(define fn-keys (string->list "")) + +;(define extra-sybols (string->list "☠⌨☭☮☢☣☥⚓")) +(define extra-sybols (string->list "☠⌨⌨☮☢☣☥")) diff --git a/glyphs/es.scm b/glyphs/es.scm new file mode 100644 index 0000000..5879908 --- /dev/null +++ b/glyphs/es.scm @@ -0,0 +1,2 @@ +(define letters (string->list "ABCDEFGHIJKLMNÑOPQRSTUVWXYZ")) +(define numbers (string->list "1234567890")) |