From: Mischa POSLAWSKY Date: Sat, 23 Mar 2024 22:18:58 +0000 (+0100) Subject: keyboard/altgr: copy pico-8 graphical symbols as p8scii X-Git-Tag: v1.20~25 X-Git-Url: http://git.shiar.net/sheet.git/commitdiff_plain/197c01835a06db14ca3e5eaa7443f1e7fae75eb8?hp=77f44070285e0b9bb682c4f099a3128ab8a132ef keyboard/altgr: copy pico-8 graphical symbols as p8scii Official corresponding unicode (including variation selectors) from . --- diff --git a/keyboard/altgr/p8scii.eng.inc.pl b/keyboard/altgr/p8scii.eng.inc.pl new file mode 100644 index 0000000..f7831e2 --- /dev/null +++ b/keyboard/altgr/p8scii.eng.inc.pl @@ -0,0 +1,52 @@ +use utf8; +use strict; +use warnings; +use Shiar_Sheet::KeyboardChars 'kbchars'; + +my %rows = ( + 1 => '▮', + 2 => '■', + 3 => '□', + 4 => '⁙', + 5 => '⁘', + 6 => '‖', + 7 => '◀', + 8 => '▶', + 0 => '○', # + a => '█', + b => '▒', + c => '🐱', + d => '⬇️', + e => '░', + f => '✽', + g => '●', + h => '♥', + i => '☉', + j => '웃', + k => '⌂', + l => '⬅️', + m => '😐', + n => '♪', + o => '🅾️', + p => '◆', + q => '…', + r => '➡️', + s => '★', + t => '⧗', + u => '⬆️', + v => 'ˇ', + w => '∧', + x => '❎', + y => '▤', + z => '▥', +); + +my $groups = kbchars(\%rows); + ++{ + %{ $groups }, + version => '1.0', + title => 'P8SCII', + moderows => '1', + intro => 'PICO-8 character set', +}