2007-05-30 12:19:28 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2006-08-02 16:46:59 +02:00
|
|
|
|
2023-01-08 18:11:51 +01:00
|
|
|
#define SESSION_FILE "/tmp/dwm-session"
|
|
|
|
|
2007-02-21 11:30:52 +01:00
|
|
|
/* appearance */
|
2022-04-23 15:57:35 +02:00
|
|
|
static unsigned int borderpx = 1; /* border pixel of windows */
|
|
|
|
static unsigned int gappx = 5; /* gaps between windows */
|
|
|
|
static unsigned int snap = 32; /* snap pixel */
|
|
|
|
static int swallowfloating = 0; /* 1 means swallow floating windows by default */
|
|
|
|
static int showbar = 1; /* 0 means no bar */
|
|
|
|
static int topbar = 1; /* 0 means bottom bar */
|
|
|
|
static char font[] = "monospace:size=10";
|
|
|
|
static char symbols[] = "monospace:size=10";
|
2022-11-01 23:22:57 +01:00
|
|
|
static char japan[] = "monospace:size=10";
|
2022-04-23 15:57:35 +02:00
|
|
|
static char dmenufont[] = "monospace:size=10";
|
2022-11-04 20:56:14 +01:00
|
|
|
static const char *fonts[] = { font, symbols, japan };
|
2022-04-23 14:05:27 +02:00
|
|
|
static char normbgcolor[] = "#222222";
|
|
|
|
static char normbordercolor[] = "#444444";
|
|
|
|
static char normfgcolor[] = "#bbbbbb";
|
|
|
|
static char selfgcolor[] = "#eeeeee";
|
|
|
|
static char selbordercolor[] = "#005577";
|
|
|
|
static char selbgcolor[] = "#005577";
|
|
|
|
static char *colors[][3] = {
|
|
|
|
/* fg bg border */
|
|
|
|
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor },
|
|
|
|
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor },
|
2016-05-22 22:33:56 +02:00
|
|
|
};
|
2009-06-20 16:10:04 +02:00
|
|
|
|
2008-03-04 22:40:49 +01:00
|
|
|
/* tagging */
|
2009-05-29 10:29:22 +02:00
|
|
|
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
2008-02-27 22:50:50 +01:00
|
|
|
|
2009-07-08 19:59:20 +02:00
|
|
|
static const Rule rules[] = {
|
2012-01-22 20:23:49 +01:00
|
|
|
/* xprop(1):
|
|
|
|
* WM_CLASS(STRING) = instance, class
|
|
|
|
* WM_NAME(STRING) = title
|
|
|
|
*/
|
2022-04-23 13:37:21 +02:00
|
|
|
/* class instance title tags mask iscentered isfloating isterminal noswallow monitor */
|
2022-04-23 15:57:35 +02:00
|
|
|
// { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 },
|
|
|
|
// { "Firefox", NULL, NULL, 1 << 8, 0, 0, 0, -1, -1 },
|
|
|
|
{ "St", NULL, NULL, 0, 0, 0, 1, -1, -1 },
|
2022-10-25 11:56:37 +02:00
|
|
|
{ "Pinentry-gtk-2",NULL, NULL, 0, 1, 1, 1, -1, -1 },
|
2022-11-04 18:51:25 +01:00
|
|
|
{ "Gcr-prompter",NULL, NULL, 0, 1, 1, 1, -1, -1 },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ "floating",NULL, NULL, 0, 1, 1, 1, -1, -1 },
|
|
|
|
{ NULL, NULL, "Event Tester", 0, 0, 1, 0, 1, -1 }, /* xev */
|
2007-02-21 11:30:52 +01:00
|
|
|
};
|
2007-02-19 18:19:43 +01:00
|
|
|
|
2007-02-21 11:30:52 +01:00
|
|
|
/* layout(s) */
|
2022-04-23 14:05:27 +02:00
|
|
|
static float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
|
|
|
static int nmaster = 1; /* number of clients in master area */
|
|
|
|
static int resizehints = 1; /* 1 means respect size hints in tiled resizals */
|
2021-07-12 23:44:16 +02:00
|
|
|
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
|
2008-05-19 13:34:54 +02:00
|
|
|
|
2009-07-08 19:59:20 +02:00
|
|
|
static const Layout layouts[] = {
|
2008-05-26 10:54:34 +02:00
|
|
|
/* symbol arrange function */
|
2008-06-19 12:38:53 +02:00
|
|
|
{ "[]=", tile }, /* first entry is default */
|
|
|
|
{ "><>", NULL }, /* no layout function means floating behavior */
|
2008-07-02 12:19:02 +02:00
|
|
|
{ "[M]", monocle },
|
2007-02-19 18:19:43 +01:00
|
|
|
};
|
|
|
|
|
2007-02-21 11:30:52 +01:00
|
|
|
/* key definitions */
|
2022-04-23 15:57:35 +02:00
|
|
|
#define MODKEY Mod4Mask
|
2008-05-26 10:39:57 +02:00
|
|
|
#define TAGKEYS(KEY,TAG) \
|
2008-06-11 21:41:28 +02:00
|
|
|
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
|
2008-05-26 10:39:57 +02:00
|
|
|
|
2008-06-12 17:37:03 +02:00
|
|
|
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
|
2008-06-14 11:38:18 +02:00
|
|
|
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
|
|
|
|
|
|
|
/* commands */
|
2013-08-02 22:40:20 +02:00
|
|
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
2022-04-23 15:57:35 +02:00
|
|
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-p", "run:", NULL };
|
2013-07-20 09:08:46 +02:00
|
|
|
static const char *termcmd[] = { "st", NULL };
|
2008-06-11 15:10:18 +02:00
|
|
|
|
2022-04-23 14:05:27 +02:00
|
|
|
/*
|
|
|
|
* Xresources preferences to load at startup
|
|
|
|
*/
|
|
|
|
ResourcePref resources[] = {
|
|
|
|
{ "font", STRING, &font },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ "symbols", STRING, &symbols },
|
2022-11-01 23:22:57 +01:00
|
|
|
{ "japan", STRING, &japan },
|
2022-04-23 14:05:27 +02:00
|
|
|
{ "dmenufont", STRING, &dmenufont },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ "background", STRING, &normbgcolor },
|
2022-10-31 15:54:27 +01:00
|
|
|
{ "normforeground", STRING, &normbordercolor },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ "normforeground", STRING, &normfgcolor },
|
|
|
|
{ "selbackground", STRING, &selbgcolor },
|
2023-01-08 00:23:43 +01:00
|
|
|
{ "selborder", STRING, &selbordercolor },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ "selforeground", STRING, &selfgcolor },
|
2022-04-23 14:05:27 +02:00
|
|
|
{ "borderpx", INTEGER, &borderpx },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ "gappx", INTEGER, &gappx },
|
|
|
|
{ "snap", INTEGER, &snap },
|
|
|
|
{ "showbar", INTEGER, &showbar },
|
|
|
|
{ "topbar", INTEGER, &topbar },
|
|
|
|
{ "nmaster", INTEGER, &nmaster },
|
|
|
|
{ "resizehints", INTEGER, &resizehints },
|
|
|
|
{ "mfact", FLOAT, &mfact },
|
2022-04-23 14:05:27 +02:00
|
|
|
};
|
|
|
|
|
2022-08-18 18:13:08 +02:00
|
|
|
static const Key keys[] = {
|
2008-05-17 15:04:27 +02:00
|
|
|
/* modifier key function argument */
|
2022-04-23 15:57:35 +02:00
|
|
|
// { MODKEY, XK_p, spawn, {.v = dmenucmd } },
|
|
|
|
// { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
|
2008-06-11 21:41:28 +02:00
|
|
|
{ MODKEY, XK_b, togglebar, {0} },
|
|
|
|
{ MODKEY, XK_j, focusstack, {.i = +1 } },
|
|
|
|
{ MODKEY, XK_k, focusstack, {.i = -1 } },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ MODKEY, XK_o, incnmaster, {.i = +1 } },
|
|
|
|
{ MODKEY, XK_i, incnmaster, {.i = -1 } },
|
2008-06-11 21:41:28 +02:00
|
|
|
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
|
|
|
|
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ MODKEY, XK_space, zoom, {0} },
|
2008-06-11 21:41:28 +02:00
|
|
|
{ MODKEY, XK_Tab, view, {0} },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ MODKEY, XK_q, killclient, {0} },
|
2008-06-19 12:38:53 +02:00
|
|
|
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
|
|
|
|
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
|
|
|
|
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
|
2022-04-23 15:57:35 +02:00
|
|
|
// { MODKEY, XK_space, setlayout, {0} },
|
2008-06-11 21:41:28 +02:00
|
|
|
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ MODKEY, XK_agrave, view, {.ui = ~0 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_agrave, tag, {.ui = ~0 } },
|
2009-07-02 21:37:26 +02:00
|
|
|
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
|
|
|
|
{ MODKEY, XK_period, focusmon, {.i = +1 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
|
2022-04-23 15:57:35 +02:00
|
|
|
{ MODKEY, XK_less, setgaps, {.i = -1 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_less, setgaps, {.i = +1 } },
|
2022-04-23 13:28:58 +02:00
|
|
|
{ MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } },
|
2022-04-23 15:57:35 +02:00
|
|
|
TAGKEYS( XK_ampersand, 0)
|
|
|
|
TAGKEYS( XK_eacute, 1)
|
|
|
|
TAGKEYS( XK_quotedbl, 2)
|
|
|
|
TAGKEYS( XK_apostrophe, 3)
|
|
|
|
TAGKEYS( XK_parenleft, 4)
|
|
|
|
TAGKEYS( XK_minus, 5)
|
|
|
|
TAGKEYS( XK_egrave, 6)
|
|
|
|
TAGKEYS( XK_underscore, 7)
|
|
|
|
TAGKEYS( XK_ccedilla, 8)
|
2008-06-11 21:41:28 +02:00
|
|
|
{ MODKEY|ShiftMask, XK_q, quit, {0} },
|
2023-01-08 15:01:17 +01:00
|
|
|
{ MODKEY|Mod1Mask, XK_q, quit, {1} },
|
2006-08-02 16:46:59 +02:00
|
|
|
};
|
2008-06-11 21:41:28 +02:00
|
|
|
|
|
|
|
/* button definitions */
|
2018-05-25 06:56:36 +02:00
|
|
|
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
2022-08-18 18:13:08 +02:00
|
|
|
static const Button buttons[] = {
|
2008-06-11 21:41:28 +02:00
|
|
|
/* click event mask button function argument */
|
2008-06-19 12:38:53 +02:00
|
|
|
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
|
|
|
|
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
|
2008-06-14 11:38:18 +02:00
|
|
|
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
2008-06-11 21:41:28 +02:00
|
|
|
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
|
|
|
|
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
|
|
|
|
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
|
2008-06-24 13:40:48 +02:00
|
|
|
{ ClkTagBar, 0, Button1, view, {0} },
|
|
|
|
{ ClkTagBar, 0, Button3, toggleview, {0} },
|
|
|
|
{ ClkTagBar, MODKEY, Button1, tag, {0} },
|
2008-06-20 17:52:07 +02:00
|
|
|
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
|
2008-06-11 21:41:28 +02:00
|
|
|
};
|
|
|
|
|