mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-04-03 18:14:15 +00:00
6 lines
279 B
Text
6 lines
279 B
Text
#define stick_width 16
|
|
#define stick_height 16
|
|
static char stick_bits[] = {
|
|
0xe0, 0x0f, 0xe0, 0x0f, 0xc0, 0x07, 0xc0, 0x07, 0xc0, 0x07, 0xc0, 0x07,
|
|
0xe0, 0x0f, 0xe0, 0x0f, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03,
|
|
0x80, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 };
|