diff options
Diffstat (limited to 'icons')
-rw-r--r-- | icons/cpu.xbm | 4 | ||||
-rw-r--r-- | icons/mem.xbm | 4 | ||||
-rw-r--r-- | icons/power-ac.xbm | 4 | ||||
-rw-r--r-- | icons/power-bat-empty.xbm | 4 | ||||
-rw-r--r-- | icons/power-bat-full.xbm | 4 | ||||
-rw-r--r-- | icons/power-bat-low.xbm | 4 | ||||
-rw-r--r-- | icons/vol-hi.xbm | 4 | ||||
-rw-r--r-- | icons/vol-mute.xbm | 4 |
8 files changed, 32 insertions, 0 deletions
diff --git a/icons/cpu.xbm b/icons/cpu.xbm new file mode 100644 index 0000000..4c34d58 --- /dev/null +++ b/icons/cpu.xbm @@ -0,0 +1,4 @@ +#define cpu_width 8 +#define cpu_height 8 +static unsigned char cpu_bits[] = { + 0xDB, 0x81, 0x3C, 0xBD, 0xBD, 0x3C, 0x81, 0xDB }; diff --git a/icons/mem.xbm b/icons/mem.xbm new file mode 100644 index 0000000..a1c354e --- /dev/null +++ b/icons/mem.xbm @@ -0,0 +1,4 @@ +#define mem_width 8 +#define mem_height 8 +static unsigned char mem_bits[] = { + 0xAA, 0x00, 0xFE, 0xFE, 0xFE, 0xFE, 0x00, 0xAA }; diff --git a/icons/power-ac.xbm b/icons/power-ac.xbm new file mode 100644 index 0000000..66592d7 --- /dev/null +++ b/icons/power-ac.xbm @@ -0,0 +1,4 @@ +#define ac_01_width 8 +#define ac_01_height 8 +static unsigned char ac_01_bits[] = { + 0x30, 0x28, 0xE4, 0x27, 0x27, 0xE4, 0x28, 0x30 }; diff --git a/icons/power-bat-empty.xbm b/icons/power-bat-empty.xbm new file mode 100644 index 0000000..e26be8c --- /dev/null +++ b/icons/power-bat-empty.xbm @@ -0,0 +1,4 @@ +#define bat_empty_02_width 8 +#define bat_empty_02_height 8 +static unsigned char bat_empty_02_bits[] = { + 0x00, 0x7F, 0x41, 0xC1, 0xC1, 0x41, 0x7F, 0x00 }; diff --git a/icons/power-bat-full.xbm b/icons/power-bat-full.xbm new file mode 100644 index 0000000..93d2327 --- /dev/null +++ b/icons/power-bat-full.xbm @@ -0,0 +1,4 @@ +#define bat_full_02_width 8 +#define bat_full_02_height 8 +static unsigned char bat_full_02_bits[] = { + 0x00, 0x7F, 0x41, 0xDD, 0xDD, 0x41, 0x7F, 0x00 }; diff --git a/icons/power-bat-low.xbm b/icons/power-bat-low.xbm new file mode 100644 index 0000000..d80a464 --- /dev/null +++ b/icons/power-bat-low.xbm @@ -0,0 +1,4 @@ +#define bat_low_02_width 8 +#define bat_low_02_height 8 +static unsigned char bat_low_02_bits[] = { + 0x00, 0x7F, 0x41, 0xC5, 0xC5, 0x41, 0x7F, 0x00 }; diff --git a/icons/vol-hi.xbm b/icons/vol-hi.xbm new file mode 100644 index 0000000..7c2ffc4 --- /dev/null +++ b/icons/vol-hi.xbm @@ -0,0 +1,4 @@ +#define spkr_01_width 8 +#define spkr_01_height 8 +static unsigned char spkr_01_bits[] = { + 0x08, 0x4C, 0x8F, 0xAF, 0xAF, 0x8F, 0x4C, 0x08 }; diff --git a/icons/vol-mute.xbm b/icons/vol-mute.xbm new file mode 100644 index 0000000..8265bf8 --- /dev/null +++ b/icons/vol-mute.xbm @@ -0,0 +1,4 @@ +#define spkr_02_width 8 +#define spkr_02_height 8 +static unsigned char spkr_02_bits[] = { + 0x08, 0x0C, 0x0F, 0x1F, 0x1F, 0x0F, 0x0C, 0x08 }; |