diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-27 14:24:10 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-27 14:56:06 +0300 |
commit | 7985c39e7f767fbdcc835c13c24455c96ba8e8d6 (patch) | |
tree | b250efc862b032d0aef1483860c3929d9de83a2f /config.def.h | |
parent | 20efe5c18c543cf29e92f07976fb2de0b796bf6b (diff) | |
download | dwm-7985c39e7f767fbdcc835c13c24455c96ba8e8d6.tar.gz |
feat: add gaps
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 0d645ea..623895f 100644 --- a/config.def.h +++ b/config.def.h @@ -2,7 +2,7 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int gappx = 5; /* gaps between windows */ +static const unsigned int gappx = 28; /* gaps 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 */ @@ -29,7 +29,7 @@ static const Rule rules[] = { */ /* class instance title tags mask isfloating monitor */ { "Gimp", NULL, NULL, 0, 1, -1 }, - { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + // TODO: figure out firefox { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, }; /* layout(s) */ |