Merge pull request #72 from rjl6789/master
correct colorname declaration
This commit is contained in:
commit
be3ea16279
5
config.h
5
config.h
@ -107,6 +107,7 @@ static const char *colorname[] = {
|
|||||||
/* more colors can be added after 255 to use with DefaultXX */
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
"black", /* 256 -> bg */
|
"black", /* 256 -> bg */
|
||||||
"white", /* 257 -> fg */
|
"white", /* 257 -> fg */
|
||||||
|
"#add8e6", /* 258 -> cursor */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -114,8 +115,8 @@ static const char *colorname[] = {
|
|||||||
* Default colors (colorname index)
|
* Default colors (colorname index)
|
||||||
* foreground, background, cursor, reverse cursor
|
* foreground, background, cursor, reverse cursor
|
||||||
*/
|
*/
|
||||||
unsigned int defaultfg = 15;
|
unsigned int defaultfg = 257;
|
||||||
unsigned int defaultbg = 0;
|
unsigned int defaultbg = 256;
|
||||||
static unsigned int defaultcs = 15;
|
static unsigned int defaultcs = 15;
|
||||||
static unsigned int defaultrcs = 0;
|
static unsigned int defaultrcs = 0;
|
||||||
|
|
||||||
|
2
refresh.sh
Executable file
2
refresh.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
sudo make uninstall && make clean && make && sudo make install
|
Loading…
Reference in New Issue
Block a user