summaryrefslogtreecommitdiff
path: root/dwm/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'dwm/config.h')
-rw-r--r--dwm/config.h83
1 files changed, 67 insertions, 16 deletions
diff --git a/dwm/config.h b/dwm/config.h
index ccaface..495e8fe 100644
--- a/dwm/config.h
+++ b/dwm/config.h
@@ -1,25 +1,36 @@
1/* See LICENSE file for copyright and license details. */ 1/* See LICENSE file for copyright and license details. */
2 2#include <X11/XF86keysym.h>
3/* appearance */ 3/* appearance */
4static const unsigned int borderpx = 1; /* border pixel of windows */ 4static const unsigned int borderpx = 0; /* border pixel of windows */
5static const unsigned int snap = 32; /* snap pixel */ 5static const unsigned int snap = 32; /* snap pixel */
6static const unsigned int gappih = 8; /* horiz inner gap between windows */
7static const unsigned int gappiv = 8; /* vert inner gap between windows */
8static const unsigned int gappoh = 8; /* horiz outer gap between windows and screen edge */
9static const unsigned int gappov = 8; /* vert outer gap between windows and screen edge */
10static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */
6static const int showbar = 1; /* 0 means no bar */ 11static const int showbar = 1; /* 0 means no bar */
7static const int topbar = 1; /* 0 means bottom bar */ 12static const int topbar = 1; /* 0 means bottom bar */
8static const char *fonts[] = { "Hermit:pixelsize=12:antialias:true:autohint=true" }; 13static const char *fonts[] = { "Hermit:pixelsize=11:antialias=true:autohint=true" };
9static const char dmenufont[] = "Hermit:pixelsize=12:antialias:true:autohint=true"; 14static const char col_gray1[] = "#000000";
10static const char col_gray1[] = "#222222";
11static const char col_gray2[] = "#444444"; 15static const char col_gray2[] = "#444444";
12static const char col_gray3[] = "#bbbbbb"; 16static const char col_gray3[] = "#bbbbbb";
13static const char col_gray4[] = "#eeeeee"; 17static const char col_gray4[] = "#000000";
14static const char col_cyan[] = "#005577"; 18static const char col_cyan[] = "#84a0c6";
19static const char col_black[] = "#000000";
20static const char col_red[] = "#ff0000";
21static const char col_yellow[] = "#ffff00";
22static const char col_white[] = "#ffffff";
23
15static const char *colors[][3] = { 24static const char *colors[][3] = {
16 /* fg bg border */ 25 /* fg bg border */
17 [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, 26 [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
18 [SchemeSel] = { col_gray4, col_cyan, col_cyan }, 27 [SchemeSel] = { col_gray4, col_cyan, col_cyan },
28 [SchemeWarn] = { col_black, col_yellow, col_red },
29 [SchemeUrgent]= { col_white, col_red, col_red },
19}; 30};
20 31
21/* tagging */ 32/* tagging */
22static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; 33static const char *tags[] = { "term", "web", "music", "file", "virt", "hack", "7", "8", "9" };
23 34
24static const Rule rules[] = { 35static const Rule rules[] = {
25 /* xprop(1): 36 /* xprop(1):
@@ -28,11 +39,11 @@ static const Rule rules[] = {
28 */ 39 */
29 /* class instance title tags mask isfloating monitor */ 40 /* class instance title tags mask isfloating monitor */
30 { "Gimp", NULL, NULL, 0, 1, -1 }, 41 { "Gimp", NULL, NULL, 0, 1, -1 },
31 { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, 42 { "Firefox", NULL, NULL, 2, 0, -1 },
32}; 43};
33 44
34/* layout(s) */ 45/* layout(s) */
35static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ 46static const float mfact = 0.50; /* factor of master area size [0.05..0.95] */
36static const int nmaster = 1; /* number of clients in master area */ 47static const int nmaster = 1; /* number of clients in master area */
37static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ 48static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
38 49
@@ -56,13 +67,36 @@ static const Layout layouts[] = {
56 67
57/* commands */ 68/* commands */
58static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ 69static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
59static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; 70static const char *dmenucmd[] = { "menu", NULL };
60static const char *termcmd[] = { "st", NULL }; 71static const char *termcmd[] = { "st", NULL };
72static const char scratchpadname[] = "scratchpad";
73static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL };
74
75/* volume */
76static const char *upvol[] = { "pulsemixer", "--change-volume", "+5", NULL };
77static const char *downvol[] = { "pulsemixer", "--change-volume", "-5", NULL };
78static const char *mutevol[] = { "pulsemixer", "--toggle-mute", NULL };
79static const char *shut[] = { "shut", NULL };
80
81/* brightness */
82static const char *brightup[] = { "doas", "bup", NULL };
83static const char *brightdown[] = { "doas", "bdown", NULL };
84
85/* lock */
86static const char *lock[] = { "xset", "s", "activate", NULL };
61 87
62static Key keys[] = { 88static Key keys[] = {
63 /* modifier key function argument */ 89 /* modifier key function argument */
64 { MODKEY, XK_p, spawn, {.v = dmenucmd } }, 90 { MODKEY, XK_p, spawn, {.v = dmenucmd } },
65 { MODKEY, XK_Return, spawn, {.v = termcmd } }, 91 { MODKEY, XK_Return, spawn, {.v = termcmd } },
92 { MODKEY, XK_grave, togglescratch, {.v = scratchpadcmd } },
93 { MODKEY, XK_x, spawn, {.v = shut } },
94 { 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol } },
95 { 0, XF86XK_AudioMute, spawn, {.v = mutevol } },
96 { 0, XF86XK_AudioRaiseVolume, spawn, {.v = upvol } },
97 { 0, XF86XK_MonBrightnessUp, spawn, {.v = brightup } },
98 { 0, XF86XK_MonBrightnessDown, spawn, {.v = brightdown } },
99 { MODKEY|ShiftMask, XK_Delete, spawn, {.v = lock } },
66 { MODKEY, XK_b, togglebar, {0} }, 100 { MODKEY, XK_b, togglebar, {0} },
67 { MODKEY, XK_j, focusstack, {.i = +1 } }, 101 { MODKEY, XK_j, focusstack, {.i = +1 } },
68 { MODKEY, XK_k, focusstack, {.i = -1 } }, 102 { MODKEY, XK_k, focusstack, {.i = -1 } },
@@ -70,12 +104,29 @@ static Key keys[] = {
70 { MODKEY, XK_d, incnmaster, {.i = -1 } }, 104 { MODKEY, XK_d, incnmaster, {.i = -1 } },
71 { MODKEY, XK_h, setmfact, {.f = -0.05} }, 105 { MODKEY, XK_h, setmfact, {.f = -0.05} },
72 { MODKEY, XK_l, setmfact, {.f = +0.05} }, 106 { MODKEY, XK_l, setmfact, {.f = +0.05} },
107 { MODKEY|Mod4Mask, XK_h, incrgaps, {.i = +1 } },
108 { MODKEY|Mod4Mask, XK_l, incrgaps, {.i = -1 } },
109 { MODKEY|Mod4Mask|ShiftMask, XK_h, incrogaps, {.i = +1 } },
110 { MODKEY|Mod4Mask|ShiftMask, XK_l, incrogaps, {.i = -1 } },
111 { MODKEY|Mod4Mask|ControlMask, XK_h, incrigaps, {.i = +1 } },
112 { MODKEY|Mod4Mask|ControlMask, XK_l, incrigaps, {.i = -1 } },
113 { MODKEY|Mod4Mask, XK_0, togglegaps, {0} },
114 { MODKEY|Mod4Mask|ShiftMask, XK_0, defaultgaps, {0} },
115 { MODKEY, XK_y, incrihgaps, {.i = +1 } },
116 { MODKEY, XK_o, incrihgaps, {.i = -1 } },
117 { MODKEY|ControlMask, XK_y, incrivgaps, {.i = +1 } },
118 { MODKEY|ControlMask, XK_o, incrivgaps, {.i = -1 } },
119 { MODKEY|Mod4Mask, XK_y, incrohgaps, {.i = +1 } },
120 { MODKEY|Mod4Mask, XK_o, incrohgaps, {.i = -1 } },
121 { MODKEY|ShiftMask, XK_y, incrovgaps, {.i = +1 } },
122 { MODKEY|ShiftMask, XK_o, incrovgaps, {.i = -1 } },
73 { MODKEY, XK_Return, zoom, {0} }, 123 { MODKEY, XK_Return, zoom, {0} },
74 { MODKEY, XK_Tab, view, {0} }, 124 { MODKEY, XK_Tab, view, {0} },
75 { MODKEY, XK_w, killclient, {0} }, 125 { MODKEY, XK_w, killclient, {0} },
76 { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, 126 { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
77 { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, 127 { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
78 { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, 128 { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
129 { MODKEY|ShiftMask, XK_f, fullscreen, {0} },
79 { MODKEY, XK_space, setlayout, {0} }, 130 { MODKEY, XK_space, setlayout, {0} },
80 { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, 131 { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
81 { MODKEY, XK_0, view, {.ui = ~0 } }, 132 { MODKEY, XK_0, view, {.ui = ~0 } },