diff options
| author | krolyxon <krolyxon@tutanota.com> | 2023-02-03 14:00:48 +0530 |
|---|---|---|
| committer | krolyxon <krolyxon@tutanota.com> | 2023-02-03 14:00:48 +0530 |
| commit | c28002125358ea355300c520aa5c2715ae9a6f6a (patch) | |
| tree | 7f5f399f1e56d400d2e526d8e232c40b00c066a4 | |
| parent | 8f0322c2e33cd39208bd2693fde968ba47a93e6e (diff) | |
customization
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | config.h (renamed from config.def.h) | 6 |
3 files changed, 3 insertions, 8 deletions
@@ -1,4 +1,3 @@ -config.h version.h *.d *.o @@ -44,10 +44,6 @@ $(objs): Makefile config.mk nsxiv.h config.h commands.h options.o: version.h optparse.h window.o: icon/data.h utf8.h -config.h: - @echo "GEN $@" - cp config.def.h $@ - version.h: config.mk .git/index @echo "GEN $@" v="$$(git describe 2>/dev/null || true)"; \ @@ -7,11 +7,11 @@ static const int WIN_HEIGHT = 600; /* colors and font can be overwritten via X resource properties. * See nsxiv(1), X(7) section Resources and xrdb(1) for more information. */ -static const char *DEFAULT_WIN_BG = "white"; -static const char *DEFAULT_WIN_FG = "black"; +static const char *DEFAULT_WIN_BG = "#222222"; +static const char *DEFAULT_WIN_FG = "white"; static const char *DEFAULT_MARK_COLOR = NULL; /* NULL means it will default to window foreground */ #if HAVE_LIBFONTS -static const char *DEFAULT_BAR_BG = NULL; /* NULL means it will default to window background */ +static const char *DEFAULT_BAR_BG = "#224488"; /* NULL means it will default to window background */ static const char *DEFAULT_BAR_FG = NULL; /* NULL means it will default to window foreground */ static const char *DEFAULT_FONT = "monospace-8"; |
