changed some colors and make options
This commit is contained in:
parent
ee87fc5b9c
commit
6c0f3f9947
8
Makefile
8
Makefile
@ -39,13 +39,7 @@ CC = gcc
|
||||
SRC = drw.c dwm.c util.c
|
||||
OBJ = ${SRC:.c=.o}
|
||||
|
||||
all: options dwm
|
||||
|
||||
options:
|
||||
@echo dwm build options:
|
||||
@echo "CFLAGS = ${CFLAGS}"
|
||||
@echo "LDFLAGS = ${LDFLAGS}"
|
||||
@echo "CC = ${CC}"
|
||||
all: dwm
|
||||
|
||||
.c.o:
|
||||
${CC} -c ${CFLAGS} $<
|
||||
|
12
config.h
12
config.h
@ -32,17 +32,17 @@ static const char *colors[][3] = {
|
||||
[SchemeNorm] = { col_fg, col_bg, col_grey },
|
||||
[SchemeSel] = { col_grey, col_blue, col_orange },
|
||||
/* Statusbar right { fg, bg, leave as-is} */
|
||||
[SchemeStatus] = { col_bg, col_green, "#000000" },
|
||||
[SchemeStatus] = { "#ffffff", col_blue, "#000000" },
|
||||
/* Tagbar left selected */
|
||||
[SchemeTagsSel] = { col_bg, col_aqua_0, "#000000" },
|
||||
[SchemeTagsSel] = { col_bg_0, col_yellow_0, "#000000" },
|
||||
/* Tagbar left unselected */
|
||||
[SchemeTagsNorm] = { col_fg_0, col_bg, "#000000" },
|
||||
[SchemeTagsNorm] = { col_fg, col_bg, "#000000" },
|
||||
/* infobar middle selected */
|
||||
[SchemeInfoSel] = { col_fg, col_purple, "#000000" },
|
||||
[SchemeInfoSel] = { col_bg_0, col_yellow_0, "#000000" },
|
||||
/* infobar middle unselected */
|
||||
[SchemeInfoNorm] = { col_fg, col_bg_0, "#000000" },
|
||||
/* Menu scheme */
|
||||
[SchemeMenu] = { col_bg_0, col_yellow, "#000000" },
|
||||
[SchemeMenu] = { "#ffffff", col_blue, "#000000" },
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
@ -89,7 +89,7 @@ static const char *termcmd[] = { "alacritty", NULL };
|
||||
/* launcher */
|
||||
static const Launcher launchers[] = {
|
||||
/* command name to display */
|
||||
{ roficmd, "menu" },
|
||||
{ roficmd, "[=]" },
|
||||
};
|
||||
|
||||
static Key keys[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user