mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-04-03 18:14:15 +00:00
8 lines
324 B
C
8 lines
324 B
C
#define stick_width 16
|
|
#define stick_height 16
|
|
#define stick_x_hot 8
|
|
#define stick_y_hot 12
|
|
static char stick_bits[] = {
|
|
0x1f, 0xf0, 0xdf, 0xf7, 0xbf, 0xfb, 0xbf, 0xfb, 0xbf, 0xfb, 0xbf, 0xfb,
|
|
0xdf, 0xf7, 0x1f, 0xf0, 0x7f, 0xfd, 0x7f, 0xfd, 0x7f, 0xfd, 0x7f, 0xfd,
|
|
0x7f, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff };
|