Compare commits

..

2 Commits

Author SHA1 Message Date
ee87fc5b9c fixed compiler warnings 2020-09-13 15:52:42 +02:00
1dae96e662 changed a color 2020-09-13 15:52:30 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
/* appearance */
static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int gappx = 18; /* gaps between windows */
static const unsigned int gappx = 16; /* gaps between windows */
static const unsigned int snap = 16; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
@ -38,7 +38,7 @@ static const char *colors[][3] = {
/* Tagbar left unselected */
[SchemeTagsNorm] = { col_fg_0, col_bg, "#000000" },
/* infobar middle selected */
[SchemeInfoSel] = { col_bg_0, col_purple, "#000000" },
[SchemeInfoSel] = { col_fg, col_purple, "#000000" },
/* infobar middle unselected */
[SchemeInfoNorm] = { col_fg, col_bg_0, "#000000" },
/* Menu scheme */

2
dwm.c
View File

@ -144,7 +144,7 @@ typedef struct {
typedef struct {
const char **command;
const char **name;
const char *name;
} Launcher;
/* function declarations */