From e0ec02e5992a41fb6449f2d3951015e235975bf1 Mon Sep 17 00:00:00 2001 From: Alex Denes Date: Sun, 11 Oct 2020 18:39:49 +0200 Subject: [PATCH] Initial commit (cleanup for branching off patchsets) --- config.def.h => config.h | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) rename config.def.h => config.h (84%) diff --git a/config.def.h b/config.h similarity index 84% rename from config.def.h rename to config.h index 1c0b587..0d5f486 100644 --- a/config.def.h +++ b/config.h @@ -1,25 +1,28 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ +static const unsigned int borderpx = 2; /* border pixel of windows */ 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 char *fonts[] = { "monospace:size=10" }; -static const char dmenufont[] = "monospace:size=10"; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; -static const char *colors[][3] = { +static const char *fonts[] = { "monospace:pixelsize=12:antialias=true:autohint=true" }; + +static const char col_black[] = "#000000"; +static const char col_darkgray[] = "#101010"; +static const char *const col_wired[] = { + "#C3B495", + "#CC838C", + "#B66578", + "#824856" +}; +static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeNorm] = {col_wired[1], col_black, col_wired[0]}, + [SchemeSel] = {col_wired[1], col_darkgray, col_wired[2]}, }; /* tagging */ -static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +static const char *tags[] = { "■", "●", "▲", "◆"}; static const Rule rules[] = { /* xprop(1): @@ -27,8 +30,7 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask isfloating monitor */ - { "Gimp", NULL, NULL, 0, 1, -1 }, - { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + 0 }; /* layout(s) */ @@ -53,10 +55,11 @@ static const Layout layouts[] = { /* helper for spawning shell commands in the pre dwm-5.0 fashion */ #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } +#define STCMD(cmd) { .v = (const char*[]){ "/usr/bin/st", "-e", cmd, NULL } } /* 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", "-m", dmenumon, NULL }; static const char *termcmd[] = { "st", NULL }; static Key keys[] = {