tabbed

Customized build of tabbed, the suckless tab manager
git clone git://src.adamsgaard.dk/tabbed
Log | Files | Refs | Submodules | README

commit 515a91ce6a4b6bf086ceaf469d44d8d42716da0d
parent 8276dbb95cf29e508259a467bb3098f631540cfc
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Sat, 15 Dec 2018 13:14:36 +0100

Fix cursor color

Diffstat:
Mconfig.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/config.h b/config.h @@ -121,8 +121,8 @@ static const char *colorname[] = { // [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ [256] = "#000000", /* 256 -> bg */ - [257] = "#FFFFFF", /* 257 -> fg */ - //[258] = "#ff00ff" /* 258 -> cursorcolor */ + [257] = "#ffffff", /* 257 -> fg */ + [258] = "#ff00ff" /* 258 -> cursorcolor */ }; @@ -130,9 +130,9 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 15; +unsigned int defaultfg = 257; unsigned int defaultbg = 256; -static unsigned int defaultcs = 15; +static unsigned int defaultcs = 258; static unsigned int defaultrcs = 0; /*