tabbed

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

commit 23c849f6e6a7c129f7b3f4f0c6705d0dabc12e85
parent c536d30ae7e73d67e9a38670ffa44158d1d5cb9c
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue, 16 Apr 2019 11:33:18 +0200

Fix patch application, update colors

Diffstat:
MMakefile | 2+-
Mconfig.h | 8++++----
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile @@ -10,7 +10,7 @@ $(REPO)/$(REPO): $(REPO)/config.h $(REPO)/config.h: general.diff cp *.diff $(REPO) - (cd $(REPO) && git apply *.diff) + (cd $(REPO) && for f in *.diff; do git apply $$f; done) /usr/local/bin/$(REPO): $(REPO)/$(REPO) sudo make -C $(REPO)/ install diff --git a/config.h b/config.h @@ -2,10 +2,10 @@ /* appearance */ static const char font[] = "Pragmata Pro:size=9"; -static const char* normbgcolor = "#1d1f21"; -static const char* normfgcolor = "#c5c8c6"; -static const char* selbgcolor = "#c5c8c6"; -static const char* selfgcolor = "#1d1f21"; +static const char* normbgcolor = "#ffffff"; +static const char* normfgcolor = "#4d4d4c"; +static const char* selbgcolor = "#4d4d4c"; +static const char* selfgcolor = "#ffffff"; static const char* urgbgcolor = "#FF3334"; static const char* urgfgcolor = "#000000"; static const char before[] = "<";