14 lines
204 B
C
14 lines
204 B
C
|
/* XPM */
|
||
|
static char * bullet_xpm[] = {
|
||
|
/* width height num_colors chars_per_pixel */
|
||
|
"5 5 2 1",
|
||
|
/* colors */
|
||
|
" s None c None",
|
||
|
". c #7fff00",
|
||
|
/* pixels */
|
||
|
" . ",
|
||
|
" ... ",
|
||
|
".....",
|
||
|
" ... ",
|
||
|
" . "};
|