kekl
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
./.ccls-cache
|
20
config.def.h
20
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 int topbar = 1; /* 0 means bottom bar */
|
||||||
static const char *fonts[] = { "Terminus:size=10" };
|
static const char *fonts[] = { "Terminus:size=10" };
|
||||||
static const char dmenufont[] = "Terminus:size=10";
|
static const char dmenufont[] = "Terminus:size=10";
|
||||||
static const char col_gray1[] = "#010101";
|
|
||||||
static const char col_gray2[] = "#ffffff";
|
/* Farben aus Alacritty übernommen */
|
||||||
static const char col_gray3[] = "#ffffff";
|
static const char col_gray1[] = "#161616";
|
||||||
static const char col_gray4[] = "#eeeeee";
|
static const char col_gray2[] = "#ffffff";
|
||||||
static const char col_cyan[] = "#010101";
|
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] = {
|
static const char *colors[][3] = {
|
||||||
/* fg bg border */
|
/* fg bg border */
|
||||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray1 },
|
[SchemeNorm] = { col_gray3, col_gray1, col_gray1 }, /* Normale Fenster */
|
||||||
[SchemeSel] = { col_gray4, col_cyan, col_gray2 },
|
[SchemeSel] = { col_gray4, col_cyan, col_gray2 }, /* Ausgewähltes Fenster */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* tagging */
|
/* tagging */
|
||||||
|
Reference in New Issue
Block a user