Browse Source

dark-theme

main
parent
commit
f384cd9187
2 changed files with 12 additions and 6 deletions
  1. +3
    -0
      .gitignore
  2. +9
    -6
      config.def.h

+ 3
- 0
.gitignore View File

@ -0,0 +1,3 @@
*.o
dwm
config.h

+ 9
- 6
config.def.h View File

@ -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) */


Loading…
Cancel
Save