some updates

This commit is contained in:
Linux User 2022-08-13 16:24:54 +00:00
parent b2958b407f
commit c96caea623
6 changed files with 13 additions and 11 deletions

View File

@ -3,16 +3,17 @@
/* appearance */
#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 snap = 32; /* snap pixel */
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 = 5;
static const int vertpadbar = 6;
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_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
@ -25,7 +26,7 @@ static const char *colors[][3] = {
};
/* 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[] = {
/* xprop(1):
@ -63,7 +64,7 @@ static const Layout layouts[] = {
/* commands */
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 Key keys[] = {

View File

@ -3,16 +3,17 @@
/* appearance */
#define FONT "JetBrainsMono Nerd Font Mono"
#define FONTSIZE "10"
static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int gappx = 10; /* border pixel of windows */
static const unsigned int borderpx = 4;
static const unsigned int gappx = 10;
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 int horizpadbar = 10; /* 0 means bottom bar */
static const int vertpadbar = 10; /* 0 means bottom bar */
static const int horizpadbar = 5;
static const int vertpadbar = 6;
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_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
@ -63,7 +64,7 @@ static const Layout layouts[] = {
/* commands */
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 Key keys[] = {

BIN
drw.o

Binary file not shown.

BIN
dwm

Binary file not shown.

BIN
dwm.o

Binary file not shown.

BIN
util.o

Binary file not shown.