From f384cd9187e83bb50f02ca4b81a0648dd01707fe Mon Sep 17 00:00:00 2001 From: Gerardo Marx Date: Fri, 28 Jan 2022 17:59:36 -0600 Subject: [PATCH] dark-theme --- .gitignore | 3 +++ config.def.h | 15 +++++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ecd66ba --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.o +dwm +config.h diff --git a/config.def.h b/config.def.h index 2eda138..786942d 100644 --- a/config.def.h +++ b/config.def.h @@ -20,11 +20,11 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=14" }; static const char dmenufont[] = "monospace:size=14"; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; +static const char col_gray1[] = "#1D2330"; +static const char col_gray2[] = "#1D2330";//"#444444"; +static const char col_gray3[] = "#bbbbbb";//"#bbbbbb"; +static const char col_gray4[] = "#aaaaaa";//"#eeeeee"; +static const char col_cyan[] = "#1D2330";//"#005577"; static const unsigned int baralpha = 0xd0; static const unsigned int borderalpha = OPAQUE; static const char *colors[][3] = { @@ -39,7 +39,8 @@ static const unsigned int alphas[][3] = { }; /* tagging */ -static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +//static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +static const char *tags[] = { "", "", "", "", "", "", "", "", "" }; static const Rule rules[] = { /* xprop(1): @@ -49,6 +50,8 @@ static const Rule rules[] = { /* class instance title tags mask isfloating monitor */ { "Gimp", NULL, NULL, 0, 1, -1 }, { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + { "imagej", NULL, NULL, 0, 1, -1 }, + { "eclipse", NULL, NULL, 0, 1, -1 }, }; /* layout(s) */