From 52d3834d104d434d7fd2dac9996537fc7a0ccff3 Mon Sep 17 00:00:00 2001 From: fqbn207 Date: Tue, 17 Dec 2024 01:24:18 +0100 Subject: [PATCH] kekl --- .gitignore | 1 + config.def.h | 20 ++++++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b0b8ec9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +./.ccls-cache diff --git a/config.def.h b/config.def.h index 37809bc..e5c113a 100644 --- a/config.def.h +++ b/config.def.h @@ -9,15 +9,19 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "Terminus:size=10" }; static const char dmenufont[] = "Terminus:size=10"; -static const char col_gray1[] = "#010101"; -static const char col_gray2[] = "#ffffff"; -static const char col_gray3[] = "#ffffff"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#010101"; + +/* Farben aus Alacritty übernommen */ +static const char col_gray1[] = "#161616"; +static const char col_gray2[] = "#ffffff"; +static const char col_gray3[] = "#dde1e6"; +static const char col_gray4[] = "#ffffff"; +static const char col_cyan[] = "#161616"; + +/* Farbschema für die Fenster und die Leiste */ static const char *colors[][3] = { - /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray1 }, - [SchemeSel] = { col_gray4, col_cyan, col_gray2 }, + /* fg bg border */ + [SchemeNorm] = { col_gray3, col_gray1, col_gray1 }, /* Normale Fenster */ + [SchemeSel] = { col_gray4, col_cyan, col_gray2 }, /* Ausgewähltes Fenster */ }; /* tagging */