diff options
| author | tslil clingman <> | 2021-04-25 23:01:38 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2021-04-25 23:02:40 -0400 |
| commit | e469bd55a8ab029140a3b36ac1ef11ef1abff95b (patch) | |
| tree | 8e845a0f32fd8ce2eef0e88a09158e09b651619c /qubes-dwm-6.2/config.h | |
| parent | 738457bcaae5605c82899e96527e2e9db8673414 (diff) | |
Added useless gaps
Diffstat (limited to 'qubes-dwm-6.2/config.h')
| -rw-r--r-- | qubes-dwm-6.2/config.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/qubes-dwm-6.2/config.h b/qubes-dwm-6.2/config.h index 204a1fd..2cdc465 100644 --- a/qubes-dwm-6.2/config.h +++ b/qubes-dwm-6.2/config.h @@ -23,6 +23,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /* appearance */ static const unsigned int borderpx = 2; /* border pixel of windows */ +static const unsigned int gappx = 6; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */ static const unsigned int systrayspacing = 2; /* systray spacing */ @@ -32,15 +33,14 @@ static const int rmaster = 0; /* 1 means master-area is initia static const int showbar = 1; /* 0 means no bar */ static const int topbar = 0; /* 0 means bottom bar */ static const char *fonts[] = { "Sudo:size=11" }; -static const char col_dom0[] = "#FF7F00"; -static const char col_white[] = "#FFFFFF"; -static const char col_black[] = "#000000"; -static const char col_gray[] = "#c0c0c0"; +static const char col_gray1[] = "#222222"; +static const char col_gray3[] = "#bbbbbb"; +static const char col_dom0[] = "dark orange"; /* Dom0 Colors, tagbar and status bar */ static const char *colors[][2] = { /* fg bg */ - [SchemeNorm] = { col_black, col_gray }, - [SchemeSel] = { col_white, col_dom0 }, + [SchemeNorm] = { col_gray3, col_gray1 }, + [SchemeSel] = { col_gray1, col_dom0 }, }; /* tagging */ @@ -64,9 +64,9 @@ static const int resizehints = 0; /* 1 means respect size hints in tiled resi static const Layout layouts[] = { /* symbol arrange function */ - { "[M]", monocle }, /* first entry is default */ + { "[]=", tile }, /* first entry is default */ + { "[M]", monocle }, { "[D]", deck }, - { "[]=", tile }, { "><>", NULL }, /* no layout function means floating behavior */ }; @@ -132,10 +132,10 @@ static Key keys[] = { { MODKEY, XK_e, setmfact, {.f = -0.05} }, { MODKEY, XK_Return, zoom, {0} }, { MODKEY, XK_Tab, view, {0} }, - { MODKEY|ControlMask, XK_a, setlayout, {.v = &layouts[0]} }, - { MODKEY|ControlMask, XK_r, setlayout, {.v = &layouts[1]} }, - { MODKEY|ControlMask, XK_s, setlayout, {.v = &layouts[2]} }, - { MODKEY|ControlMask, XK_t, setlayout, {.v = &layouts[3]} }, + { MODKEY, XK_a, setlayout, {.v = &layouts[0]} }, + { MODKEY, XK_r, setlayout, {.v = &layouts[1]} }, + { MODKEY, XK_s, setlayout, {.v = &layouts[2]} }, + { MODKEY|ControlMask, XK_space, setlayout, {.v = &layouts[3]} }, { MODKEY, XK_d, togglefloating, {0} }, { MODKEY, XK_comma, focusmon, {.i = -1 } }, { MODKEY, XK_period, focusmon, {.i = +1 } }, |
