summaryrefslogtreecommitdiff
path: root/dwm-6.2/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'dwm-6.2/config.h')
-rw-r--r--dwm-6.2/config.h64
1 files changed, 37 insertions, 27 deletions
diff --git a/dwm-6.2/config.h b/dwm-6.2/config.h
index c968cfa..8aa4ae0 100644
--- a/dwm-6.2/config.h
+++ b/dwm-6.2/config.h
@@ -1,20 +1,19 @@
+#include "../themes/theme.h"
+
/* See LICENSE file for copyright and license details. */
/* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */
-static const unsigned int gappx = 30; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
+static const unsigned int gappih = 12; /* horiz inner gap between windows */
+static const unsigned int gappiv = 15; /* vert inner gap between windows */
+static const unsigned int gappoh = 20; /* horiz outer gap between windows and screen edge */
+static const unsigned int gappov = 12; /* vert outer gap between windows and screen edge */
+static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
-static const int vertpad = 5;
-static const int sidepad = 8;
static const char *fonts[] = { "Source Code Pro:size=9" };
static const char dmenufont[] = "Source Code Pro:size=9";
-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[] = "#0a0063";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
@@ -31,9 +30,7 @@ static const Rule rules[] = {
*/
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 },
- { "Steam", NULL, NULL, 0, 1, -1},
- { "Firefox", NULL, NULL, 2 << 1, 0, -1 },
- { "st", NULL, NULL, 2, 0, -1 },
+ { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
};
/* layout(s) */
@@ -43,13 +40,13 @@ static const int resizehints = 1; /* 1 means respect size hints in tiled resi
static const Layout layouts[] = {
/* symbol arrange function */
- { "[]", tile }, /* first entry is default */
- { "_-_", NULL }, /* no layout function means floating behavior */
- { "(0*0)", monocle },
+ { "[]=", tile }, /* first entry is default */
+ { "><>", NULL }, /* no layout function means floating behavior */
+ { "[M]", monocle },
};
/* key definitions */
-#define MODKEY Mod4Mask
+#define MODKEY Mod1Mask
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
@@ -71,10 +68,26 @@ static Key keys[] = {
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
-/* { MODKEY|ShiftMask, XK_i, incnmaster, {.i = +1 } },
- { MODKEY|ShiftMask, XK_d, incnmaster, {.i = -1 } },
+/* { MODKEY, XK_i, incnmaster, {.i = +1 } },
+ { MODKEY, XK_d, incnmaster, {.i = -1 } },
*/ { MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
+ { MODKEY|Mod4Mask, XK_h, incrgaps, {.i = +1 } },
+ { MODKEY|Mod4Mask, XK_l, incrgaps, {.i = -1 } },
+ { MODKEY|Mod4Mask|ShiftMask, XK_h, incrogaps, {.i = +1 } },
+ { MODKEY|Mod4Mask|ShiftMask, XK_l, incrogaps, {.i = -1 } },
+ { MODKEY|Mod4Mask|ControlMask, XK_h, incrigaps, {.i = +1 } },
+ { MODKEY|Mod4Mask|ControlMask, XK_l, incrigaps, {.i = -1 } },
+ { MODKEY|Mod4Mask, XK_0, togglegaps, {0} },
+ { MODKEY|Mod4Mask|ShiftMask, XK_0, defaultgaps, {0} },
+ { MODKEY, XK_y, incrihgaps, {.i = +1 } },
+ { MODKEY, XK_o, incrihgaps, {.i = -1 } },
+ { MODKEY|ControlMask, XK_y, incrivgaps, {.i = +1 } },
+ { MODKEY|ControlMask, XK_o, incrivgaps, {.i = -1 } },
+ { MODKEY|Mod4Mask, XK_y, incrohgaps, {.i = +1 } },
+ { MODKEY|Mod4Mask, XK_o, incrohgaps, {.i = -1 } },
+ { MODKEY|ShiftMask, XK_y, incrovgaps, {.i = +1 } },
+ { MODKEY|ShiftMask, XK_o, incrovgaps, {.i = -1 } },
{ MODKEY|ShiftMask, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_x, killclient, {0} },
@@ -89,16 +102,13 @@ static Key keys[] = {
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
- { MODKEY, XK_minus, setgaps, {.i = -1 } },
- { MODKEY, XK_equal, setgaps, {.i = +1 } },
- { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } },
+ // Custom keybinds
{ MODKEY|ShiftMask, XK_f, spawn, SHCMD("falkon") },
- { MODKEY|ShiftMask, XK_h, spawn, SHCMD("st htop") },
- { MODKEY|ShiftMask, XK_b, spawn, SHCMD("~/.local/bin/brighter") },
- { MODKEY|ShiftMask, XK_l, spawn, SHCMD("~/.local/bin/darker") },
- { MODKEY|ShiftMask, XK_u, spawn, SHCMD("~/.local/bin/vol_up") },
- { MODKEY|ShiftMask, XK_d, spawn, SHCMD("~/.local/bin/vol_down") },
- { MODKEY|ShiftMask, XK_m, spawn, SHCMD("~/.local/bin/mute") },
+ { MODKEY|ShiftMask, XK_b, spawn, SHCMD("brighter") },
+ { MODKEY|ShiftMask, XK_l, spawn, SHCMD("darker") },
+ { MODKEY|ShiftMask, XK_u, spawn, SHCMD("vol_up") },
+ { MODKEY|ShiftMask, XK_d, spawn, SHCMD("vol_down") },
+ { MODKEY|ShiftMask, XK_m, spawn, SHCMD("mute") },
TAGKEYS( XK_1, 0)
TAGKEYS( XK_2, 1)
TAGKEYS( XK_3, 2)
@@ -108,7 +118,7 @@ static Key keys[] = {
TAGKEYS( XK_7, 6)
TAGKEYS( XK_8, 7)
TAGKEYS( XK_9, 8)
- { MODKEY|ShiftMask, XK_q, quit, {0} },
+ { MODKEY|ShiftMask, XK_q, quit, {0} },
};
/* button definitions */