From 6c0f3f9947dff0aa3068823a1be76481cbd102aa Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Tue, 22 Sep 2020 15:11:18 +0200 Subject: [PATCH] changed some colors and make options --- Makefile | 8 +------- config.h | 12 ++++++------ 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index 6b7da7c..154ccb8 100644 --- a/Makefile +++ b/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} $< diff --git a/config.h b/config.h index f15deec..961bd5c 100644 --- a/config.h +++ b/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[] = {