27 lines
508 B
C
Executable File
27 lines
508 B
C
Executable File
/* XPM */
|
|
static char * shell_xpm[] = {
|
|
/* width height num_colors chars_per_pixel */
|
|
"16 16 4 1",
|
|
/* colors */
|
|
" s None c None",
|
|
". c #ffffe3",
|
|
"X c #dfdfc3",
|
|
"o c white",
|
|
/* pixels */
|
|
" ",
|
|
" ",
|
|
" .X. ",
|
|
" o..X.. ",
|
|
" ...X... ",
|
|
" .X..X..X. ",
|
|
" ..XX.X.XX.. ",
|
|
" ...X.X.X... ",
|
|
" ...XXXXX... ",
|
|
" ...XXX... ",
|
|
" ..XXX.. ",
|
|
" ..X.. ",
|
|
" ....... ",
|
|
" ",
|
|
" ",
|
|
" "};
|