mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-04-03 18:14:15 +00:00
6 lines
276 B
Text
6 lines
276 B
Text
#define kill_width 16
|
|
#define kill_height 16
|
|
static char kill_bits[] = {
|
|
0x00, 0x00, 0x00, 0x00, 0x08, 0x08, 0x1c, 0x1c, 0x3e, 0x3e, 0x7c, 0x1f,
|
|
0xf8, 0x0f, 0xf0, 0x07, 0xe0, 0x03, 0xf0, 0x07, 0xf8, 0x0f, 0x7c, 0x1f,
|
|
0x3e, 0x3e, 0x1c, 0x1c, 0x08, 0x08, 0x00, 0x00 };
|