aboutsummaryrefslogtreecommitdiff
path: root/src/resource.c
blob: ed4766b1a5f5e810752370b86bae4ebb31f7edce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "resource.h"

#include "res/bluetooth.xbm"
#include "res/foss-asia-2.xbm"

xbm_t bluetooth = {
	.bits = bluetooth_bits, 
	.w = bluetooth_width, 
	.h = bluetooth_height,
	.fh = 11
};

xbm_t splash = {
	.bits = foss_asia_2_bits, 
	.w = foss_asia_2_width, 
	.h = foss_asia_2_height,
	.fh = 11
};