Dracula Theme & Icons
- Change border size to 2 pixels - Add font awesome - Change colors to follow dracula theme - Add unicode icons for tags
This commit is contained in:
18
config.def.h
18
config.def.h
@@ -1,17 +1,17 @@
|
||||
/* See LICENSE file for copyright and license details. */
|
||||
|
||||
/* appearance */
|
||||
static const unsigned int borderpx = 1; /* border pixel of windows */
|
||||
static const unsigned int borderpx = 2; /* border pixel of windows */
|
||||
static const unsigned int snap = 32; /* snap pixel */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const char *fonts[] = { "monospace:size=10" };
|
||||
static const char dmenufont[] = "monospace:size=10";
|
||||
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 *fonts[] = { "monospace:size=12", "fontawesome:size12" };
|
||||
static const char dmenufont[] = "monospace:size=12";
|
||||
static const char col_gray1[] = "#282a36"; /* background color */
|
||||
static const char col_gray2[] = "#6272a4"; /* inactive window border color */
|
||||
static const char col_gray3[] = "#f8f8f2"; /* font color */
|
||||
static const char col_gray4[] = "#f8f8f2"; /* current tag and current window font color */
|
||||
static const char col_cyan[] = "#bd93f9"; /* Top bar second color and active window border color */
|
||||
static const char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
||||
@@ -19,7 +19,7 @@ static const char *colors[][3] = {
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
||||
static const char *tags[] = { "", "", "", "", "", "", "", "", "" };
|
||||
|
||||
static const Rule rules[] = {
|
||||
/* xprop(1):
|
||||
|
Reference in New Issue
Block a user