diff options
| author | filip <“filip.rabiega@gmail.com”> | 2025-05-14 01:12:42 +0200 |
|---|---|---|
| committer | filip <“filip.rabiega@gmail.com”> | 2025-05-14 01:12:42 +0200 |
| commit | f92993ed29b40bc09643c7b875b38d0c7dfe29a3 (patch) | |
| tree | e8304d97f7cbd88d290f327ab9a205b141423d72 /config.def.h | |
| parent | 0961ac37a8cf074a15ffd066f862313267a9e6a8 (diff) | |
| download | chaddwm-f92993ed29b40bc09643c7b875b38d0c7dfe29a3.tar.gz chaddwm-f92993ed29b40bc09643c7b875b38d0c7dfe29a3.tar.bz2 chaddwm-f92993ed29b40bc09643c7b875b38d0c7dfe29a3.zip | |
added gaps
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index c76c8ab..e83162a 100644 --- a/config.def.h +++ b/config.def.h @@ -1,7 +1,8 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ +static const unsigned int borderpx = 6; /* border pixel of windows */ +static const unsigned int gappx = 24; /* gap pixel between 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 */ @@ -11,11 +12,12 @@ 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_green[] = "#003300"; static const char col_cyan[] = "#005577"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeSel] = { col_gray4, col_green, col_green }, }; /* tagging */ @@ -48,7 +50,7 @@ static const Layout layouts[] = { }; /* key definitions */ -#define MODKEY Mod1Mask +#define MODKEY Mod4Mask #define TAGKEYS(KEY,TAG) \ { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ @@ -118,4 +120,3 @@ static const Button buttons[] = { { ClkTagBar, MODKEY, Button1, tag, {0} }, { ClkTagBar, MODKEY, Button3, toggletag, {0} }, }; - |
