Skip to content

Commit 7ff98a5

Browse files
schachmatChanderG
authored andcommitted
import new drw from libsl and minor fixes.
- better scaling for occupied tag squares. - draw statusline first to omitt some complicated calculations.
1 parent b460e5a commit 7ff98a5

File tree

5 files changed

+209
-208
lines changed

5 files changed

+209
-208
lines changed

config.def.h

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
/* See LICENSE file for copyright and license details. */
22

33
/* appearance */
4-
static const char *fonts[] = {
5-
"monospace:size=10"
6-
};
7-
static const char dmenufont[] = "monospace:size=10";
8-
static const char normbordercolor[] = "#444444";
9-
static const char normbgcolor[] = "#222222";
10-
static const char normfgcolor[] = "#bbbbbb";
11-
static const char selbordercolor[] = "#005577";
12-
static const char selbgcolor[] = "#005577";
13-
static const char selfgcolor[] = "#eeeeee";
144
static const unsigned int borderpx = 1; /* border pixel of windows */
155
static const unsigned int snap = 32; /* snap pixel */
166
static const int showbar = 1; /* 0 means no bar */
177
static const int topbar = 1; /* 0 means bottom bar */
8+
static const char *fonts[] = { "monospace:size=10" };
9+
static const char dmenufont[] = "monospace:size=10";
10+
static const char col_gray1[] = "#222222";
11+
static const char col_gray2[] = "#444444";
12+
static const char col_gray3[] = "#bbbbbb";
13+
static const char col_gray4[] = "#eeeeee";
14+
static const char col_cyan[] = "#005577";
15+
static const char *colors[][3] = {
16+
/* fg bg border */
17+
{ col_gray3, col_gray1, col_gray2}, /* normal */
18+
{ col_gray4, col_cyan, col_cyan }, /* selected */
19+
};
1820

1921
/* tagging */
2022
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
@@ -54,7 +56,7 @@ static const Layout layouts[] = {
5456

5557
/* commands */
5658
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
57-
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
59+
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
5860
static const char *termcmd[] = { "st", NULL };
5961

6062
static Key keys[] = {

0 commit comments

Comments
 (0)