Added Color Status Patch and set Ubuntu Awesome Fonts
This commit is contained in:
16
config.h
16
config.h
@@ -2,9 +2,6 @@
|
||||
|
||||
/* appearance */
|
||||
|
||||
#define FONT "JetBrainsMono Nerd Font"
|
||||
#define FONTSIZE "10"
|
||||
|
||||
static const unsigned int borderpx = 4;
|
||||
static const unsigned int gappx = 10;
|
||||
static const unsigned int snap = 32; /* snap pixel */
|
||||
@@ -12,8 +9,13 @@ static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const int horizpadbar = 5;
|
||||
static const int vertpadbar = 6;
|
||||
static const char *fonts[] = { FONT":size=10", "Symbols Nerd Font:size=20" };
|
||||
static const char dmenufont[] = FONT":size="FONTSIZE;
|
||||
static const int vertpadstat = 0;
|
||||
static const char *fonts[] = {
|
||||
"Ubuntu Mono:style=Bold:size=10:antialias=true:autohint=true",
|
||||
"Font Awesome 6 Free Solid:style=Solid:size=10:antialias=true:autohint=true",
|
||||
"Font Awesome 6 Brands Regular:style=Regular:size=10:antialias=true:autohint=true"
|
||||
};
|
||||
static const char dmenufont[] = "Ubuntu Mono:size=10";
|
||||
static const char col_gray1[] = "#222222";
|
||||
static const char col_gray2[] = "#444444";
|
||||
static const char col_gray3[] = "#bbbbbb";
|
||||
@@ -26,7 +28,7 @@ static const char *colors[][3] = {
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
static const char *tags[] = { "", "", "3", "", "5", "6", "7", "8", "" };
|
||||
static const char *tags[] = { "", "", "3", "", "5", "6", "7", "8", "" };
|
||||
|
||||
static const Rule rules[] = {
|
||||
/* xprop(1):
|
||||
@@ -65,7 +67,7 @@ static const Layout layouts[] = {
|
||||
|
||||
/* commands */
|
||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||
static const char *dmenucmd[] = { "dmenu_run", "-g", "10", /* "-z", "20", */ "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||
static const char *dmenucmd[] = { "dmenu_run", "-g", "10", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||
static const char *termcmd[] = { "st", NULL };
|
||||
|
||||
static Key keys[] = {
|
||||
|
||||
Reference in New Issue
Block a user