some updates
This commit is contained in:
parent
b2958b407f
commit
c96caea623
11
config.def.h
11
config.def.h
@ -3,16 +3,17 @@
|
|||||||
/* appearance */
|
/* appearance */
|
||||||
|
|
||||||
#define FONT "JetBrainsMono Nerd Font Mono"
|
#define FONT "JetBrainsMono Nerd Font Mono"
|
||||||
|
#define FONTSIZE "10"
|
||||||
|
|
||||||
static const unsigned int borderpx = 2; /* border pixel of windows */
|
static const unsigned int borderpx = 4;
|
||||||
static const unsigned int gappx = 10;
|
static const unsigned int gappx = 10;
|
||||||
static const unsigned int snap = 32; /* snap pixel */
|
static const unsigned int snap = 32; /* snap pixel */
|
||||||
static const int showbar = 1; /* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
static const int topbar = 1; /* 0 means bottom bar */
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const int horizpadbar = 5;
|
static const int horizpadbar = 5;
|
||||||
static const int vertpadbar = 5;
|
static const int vertpadbar = 6;
|
||||||
static const char *fonts[] = { FONT":size=10" };
|
static const char *fonts[] = { FONT":size=10" };
|
||||||
static const char dmenufont[] = FONT":size=10";
|
static const char dmenufont[] = FONT":size="FONTSIZE;
|
||||||
static const char col_gray1[] = "#222222";
|
static const char col_gray1[] = "#222222";
|
||||||
static const char col_gray2[] = "#444444";
|
static const char col_gray2[] = "#444444";
|
||||||
static const char col_gray3[] = "#bbbbbb";
|
static const char col_gray3[] = "#bbbbbb";
|
||||||
@ -25,7 +26,7 @@ static const char *colors[][3] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* tagging */
|
/* tagging */
|
||||||
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
static const char *tags[] = { "", "", "3", "4", "5", "6", "7", "8", "" };
|
||||||
|
|
||||||
static const Rule rules[] = {
|
static const Rule rules[] = {
|
||||||
/* xprop(1):
|
/* xprop(1):
|
||||||
@ -63,7 +64,7 @@ static const Layout layouts[] = {
|
|||||||
|
|
||||||
/* commands */
|
/* commands */
|
||||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||||
static const char *dmenucmd[] = { "dmenu_run", "-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", /* "-z", "20", */ "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||||
static const char *termcmd[] = { "st", NULL };
|
static const char *termcmd[] = { "st", NULL };
|
||||||
|
|
||||||
static Key keys[] = {
|
static Key keys[] = {
|
||||||
|
13
config.h
13
config.h
@ -3,16 +3,17 @@
|
|||||||
/* appearance */
|
/* appearance */
|
||||||
|
|
||||||
#define FONT "JetBrainsMono Nerd Font Mono"
|
#define FONT "JetBrainsMono Nerd Font Mono"
|
||||||
|
#define FONTSIZE "10"
|
||||||
|
|
||||||
static const unsigned int borderpx = 2; /* border pixel of windows */
|
static const unsigned int borderpx = 4;
|
||||||
static const unsigned int gappx = 10; /* border pixel of windows */
|
static const unsigned int gappx = 10;
|
||||||
static const unsigned int snap = 32; /* snap pixel */
|
static const unsigned int snap = 32; /* snap pixel */
|
||||||
static const int showbar = 1; /* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
static const int topbar = 1; /* 0 means bottom bar */
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const int horizpadbar = 10; /* 0 means bottom bar */
|
static const int horizpadbar = 5;
|
||||||
static const int vertpadbar = 10; /* 0 means bottom bar */
|
static const int vertpadbar = 6;
|
||||||
static const char *fonts[] = { FONT":size=10" };
|
static const char *fonts[] = { FONT":size=10" };
|
||||||
static const char dmenufont[] = FONT":size=10";
|
static const char dmenufont[] = FONT":size="FONTSIZE;
|
||||||
static const char col_gray1[] = "#222222";
|
static const char col_gray1[] = "#222222";
|
||||||
static const char col_gray2[] = "#444444";
|
static const char col_gray2[] = "#444444";
|
||||||
static const char col_gray3[] = "#bbbbbb";
|
static const char col_gray3[] = "#bbbbbb";
|
||||||
@ -63,7 +64,7 @@ static const Layout layouts[] = {
|
|||||||
|
|
||||||
/* commands */
|
/* commands */
|
||||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||||
static const char *dmenucmd[] = { "dmenu_run", "-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", /* "-z", "20", */ "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||||
static const char *termcmd[] = { "st", NULL };
|
static const char *termcmd[] = { "st", NULL };
|
||||||
|
|
||||||
static Key keys[] = {
|
static Key keys[] = {
|
||||||
|
BIN
drw.o
BIN
drw.o
Binary file not shown.
BIN
dwm
BIN
dwm
Binary file not shown.
BIN
dwm.o
BIN
dwm.o
Binary file not shown.
BIN
util.o
BIN
util.o
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user