mirror of
https://github.com/ryuslash/mode-icons.git
synced 2024-11-21 09:30:29 +01:00
7293b950bf
After merging PR #73, I already see the new icons on the corresponding modes. However, when I submitted the .xpm files I didn't resize them, so they're being displayed as a huge icon in the mode-line. This commit fixes that, by using 16x16 .xpm icons.
25 lines
469 B
C
25 lines
469 B
C
/* XPM */
|
|
static char *erlang[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"16 16 3 1 ",
|
|
" c #A90533",
|
|
". c #AA0533",
|
|
"X c None",
|
|
/* pixels */
|
|
"XXXXXXXXXXXXXXXX",
|
|
" XXXXX..XXXXX ",
|
|
" XXXXX XXXXX ",
|
|
" XXXXXXXXXXXXXX ",
|
|
".XXXXXXXXXXXXXX.",
|
|
".XXXXXXXXXXXXXX.",
|
|
".XXXXX ",
|
|
".XXXXX ",
|
|
" XXXXX .X ",
|
|
" .XXXXX XXX ",
|
|
" XXXXXXX.XXXX. ",
|
|
"XXXXXXXXXXXXXXXX",
|
|
"XXXXXXXXXXXXXXXX",
|
|
" XX.XXXX.XX.XXXX",
|
|
"XXXXXXXXXXXXXXXX",
|
|
"XXXXXXXXXXXXXXXX"
|
|
};
|