summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShubham Saini <shubham6405@gmail.com>2020-05-18 12:35:18 +0000
committerShubham Saini <shubham6405@gmail.com>2020-05-18 12:35:18 +0000
commite4d83078ce65ab64c79162bd59b8f57b84b7ff10 (patch)
treed7a3bee81ae13c3eeb4eef2f15ba3547071054f9
parent77da1f483c7e595214081f15d9a5e67785d151cc (diff)
improved bar
-rw-r--r--dwm/config.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/dwm/config.h b/dwm/config.h
index 7c65071..0674870 100644
--- a/dwm/config.h
+++ b/dwm/config.h
@@ -11,20 +11,20 @@ static const int smartgaps = 0; /* 1 means no outer gap when the
11static const int showbar = 1; /* 0 means no bar */ 11static const int showbar = 1; /* 0 means no bar */
12static const int topbar = 1; /* 0 means bottom bar */ 12static const int topbar = 1; /* 0 means bottom bar */
13static const char *fonts[] = { "Hermit:pixelsize=11:antialias=true:autohint=true" }; 13static const char *fonts[] = { "Hermit:pixelsize=11:antialias=true:autohint=true" };
14static const char col_gray1[] = "#000000"; 14static const char col_gray1[] = "#696969";
15static const char col_gray2[] = "#444444"; 15static const char col_gray2[] = "#000000";
16static const char col_gray3[] = "#bbbbbb"; 16static const char col_gray3[] = "#c6c8d1";
17static const char col_gray4[] = "#000000"; 17static const char col_gray4[] = "#696969";
18static const char col_cyan[] = "#84a0c6"; 18static const char col_cyan[] = "#e0e0e0";
19static const char col_black[] = "#000000"; 19static const char col_black[] = "#000000";
20static const char col_red[] = "#ff0000"; 20static const char col_red[] = "#ff0000";
21static const char col_yellow[] = "#ffff00"; 21static const char col_yellow[] = "#ffff00";
22static const char col_white[] = "#ffffff"; 22static const char col_white[] = "#ffffff";
23 23#define NUMCOLORS 4
24static const char *colors[][3] = { 24static const char *colors[][3] = {
25 /* fg bg border */ 25 /* fg bg border */
26 [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, 26 [SchemeNorm] = { col_gray4, col_gray2, col_gray2 },
27 [SchemeSel] = { col_gray4, col_cyan, col_cyan }, 27 [SchemeSel] = { col_gray3, col_gray2, col_gray2 },
28 [SchemeWarn] = { col_black, col_yellow, col_red }, 28 [SchemeWarn] = { col_black, col_yellow, col_red },
29 [SchemeUrgent]= { col_white, col_red, col_red }, 29 [SchemeUrgent]= { col_white, col_red, col_red },
30}; 30};