2007-05-30 10:19:28 +00:00
|
|
|
|
/* See LICENSE file for copyright and license details. */
|
2006-08-02 14:46:59 +00:00
|
|
|
|
|
2007-02-21 10:30:52 +00:00
|
|
|
|
/* appearance */
|
2020-10-11 16:39:49 +00:00
|
|
|
|
static const unsigned int borderpx = 2; /* border pixel of windows */
|
2009-07-08 17:59:20 +00:00
|
|
|
|
static const unsigned int snap = 32; /* snap pixel */
|
2015-11-08 21:48:43 +00:00
|
|
|
|
static const int showbar = 1; /* 0 means no bar */
|
|
|
|
|
static const int topbar = 1; /* 0 means bottom bar */
|
2020-10-11 16:39:49 +00:00
|
|
|
|
static const char *fonts[] = { "monospace:pixelsize=12:antialias=true:autohint=true" };
|
|
|
|
|
|
|
|
|
|
static const char col_black[] = "#000000";
|
|
|
|
|
static const char col_darkgray[] = "#101010";
|
|
|
|
|
static const char *const col_wired[] = {
|
|
|
|
|
"#C3B495",
|
|
|
|
|
"#CC838C",
|
|
|
|
|
"#B66578",
|
|
|
|
|
"#824856"
|
|
|
|
|
};
|
|
|
|
|
static const char *colors[][3] = {
|
2016-06-28 16:04:56 +00:00
|
|
|
|
/* fg bg border */
|
2020-10-11 16:39:49 +00:00
|
|
|
|
[SchemeNorm] = {col_wired[1], col_black, col_wired[0]},
|
|
|
|
|
[SchemeSel] = {col_wired[1], col_darkgray, col_wired[2]},
|
2016-05-22 20:33:56 +00:00
|
|
|
|
};
|
2009-06-20 14:10:04 +00:00
|
|
|
|
|
2008-03-04 21:40:49 +00:00
|
|
|
|
/* tagging */
|
2023-04-15 10:39:44 +00:00
|
|
|
|
static const char *tags[] = { "α", "β", "γ", "δ", "ε", "ζ" };
|
2008-02-27 21:50:50 +00:00
|
|
|
|
|
2009-07-08 17:59:20 +00:00
|
|
|
|
static const Rule rules[] = {
|
2012-01-22 19:23:49 +00:00
|
|
|
|
/* xprop(1):
|
|
|
|
|
* WM_CLASS(STRING) = instance, class
|
|
|
|
|
* WM_NAME(STRING) = title
|
|
|
|
|
*/
|
2009-07-09 20:52:17 +00:00
|
|
|
|
/* class instance title tags mask isfloating monitor */
|
2020-10-11 20:07:38 +00:00
|
|
|
|
{ NULL, NULL, NULL, 0, False, -1 },
|
2007-02-21 10:30:52 +00:00
|
|
|
|
};
|
2007-02-19 17:19:43 +00:00
|
|
|
|
|
2007-02-21 10:30:52 +00:00
|
|
|
|
/* layout(s) */
|
2015-11-08 21:48:43 +00:00
|
|
|
|
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
|
|
|
|
static const int nmaster = 1; /* number of clients in master area */
|
2023-04-15 10:39:44 +00:00
|
|
|
|
static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
|
|
|
|
|
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
|
2008-05-19 11:34:54 +00:00
|
|
|
|
|
2009-07-08 17:59:20 +00:00
|
|
|
|
static const Layout layouts[] = {
|
2008-05-26 08:54:34 +00:00
|
|
|
|
/* symbol arrange function */
|
2008-06-19 10:38:53 +00:00
|
|
|
|
{ "[]=", tile }, /* first entry is default */
|
|
|
|
|
{ "><>", NULL }, /* no layout function means floating behavior */
|
2008-07-02 10:19:02 +00:00
|
|
|
|
{ "[M]", monocle },
|
2020-10-11 17:52:48 +00:00
|
|
|
|
{ "TTT", bstack },
|
|
|
|
|
{ "===", bstackhoriz },
|
2020-10-11 18:00:52 +00:00
|
|
|
|
{ "-|_", gaplessgrid },
|
2007-02-19 17:19:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
2007-02-21 10:30:52 +00:00
|
|
|
|
/* key definitions */
|
2020-10-11 16:50:01 +00:00
|
|
|
|
#define MODKEY Mod4Mask
|
2008-05-26 08:39:57 +00:00
|
|
|
|
#define TAGKEYS(KEY,TAG) \
|
2008-06-11 19:41:28 +00: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 08:39:57 +00:00
|
|
|
|
|
2008-06-12 15:37:03 +00:00
|
|
|
|
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
|
2008-06-14 09:38:18 +00:00
|
|
|
|
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
2020-10-11 16:39:49 +00:00
|
|
|
|
#define STCMD(cmd) { .v = (const char*[]){ "/usr/bin/st", "-e", cmd, NULL } }
|
2021-04-08 03:12:59 +00:00
|
|
|
|
#define MPVSOCK(cmd) SHCMD("echo '" cmd "' | socat -u - ~/.mpvsock")
|
2008-06-14 09:38:18 +00:00
|
|
|
|
|
|
|
|
|
/* commands */
|
2022-10-28 14:37:56 +00:00
|
|
|
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
2020-10-11 16:39:49 +00:00
|
|
|
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, NULL };
|
2013-07-20 07:08:46 +00:00
|
|
|
|
static const char *termcmd[] = { "st", NULL };
|
2020-10-11 17:14:26 +00:00
|
|
|
|
static const char *lock[] = { "slock", NULL};
|
2008-06-11 13:10:18 +00:00
|
|
|
|
|
2022-08-18 16:13:08 +00:00
|
|
|
|
static const Key keys[] = {
|
2008-05-17 13:04:27 +00:00
|
|
|
|
/* modifier key function argument */
|
2020-10-11 17:14:26 +00:00
|
|
|
|
|
|
|
|
|
/* general commands */
|
2020-10-11 16:56:12 +00:00
|
|
|
|
{ MODKEY, XK_space, spawn, {.v = dmenucmd } },
|
|
|
|
|
{ MODKEY, XK_c, spawn, {.v = termcmd } },
|
2020-10-11 17:14:26 +00:00
|
|
|
|
{ MODKEY|ShiftMask, XK_l, spawn, {.v = lock } },
|
|
|
|
|
|
|
|
|
|
/* screenshots */
|
|
|
|
|
{ 0, XK_Print, spawn, SHCMD("import -silent /tmp/scr-$(date +%T).jpg") },
|
|
|
|
|
{ MODKEY, XK_Print, spawn, SHCMD("import -window root -silent /tmp/scr-$(date +%T).jpg") },
|
|
|
|
|
|
|
|
|
|
/* terminal software */
|
|
|
|
|
{ MODKEY|ShiftMask, XK_v, spawn, STCMD("pulsemixer") },
|
|
|
|
|
{ MODKEY, XK_f, spawn, STCMD("nnn") },
|
|
|
|
|
|
|
|
|
|
/* dmenu scripts */
|
2023-04-15 10:30:01 +00:00
|
|
|
|
{ MODKEY, XK_y, spawn, SHCMD("~/Sources/Scripts/dmenu/passman/script.zsh") },
|
2020-10-11 17:14:26 +00:00
|
|
|
|
|
|
|
|
|
/* mpv controls */
|
|
|
|
|
{ 0, XF86XK_AudioPlay, spawn, MPVSOCK("keypress space") },
|
|
|
|
|
{ 0, XF86XK_AudioPrev, spawn, MPVSOCK("playlist-prev") },
|
|
|
|
|
{ 0, XF86XK_AudioNext, spawn, MPVSOCK("playlist-next") },
|
|
|
|
|
|
2020-10-11 16:56:12 +00:00
|
|
|
|
{ MODKEY|ShiftMask, XK_b, togglebar, {0} },
|
2008-06-11 19:41:28 +00:00
|
|
|
|
{ MODKEY, XK_j, focusstack, {.i = +1 } },
|
|
|
|
|
{ MODKEY, XK_k, focusstack, {.i = -1 } },
|
2011-10-25 19:40:46 +00:00
|
|
|
|
{ MODKEY, XK_i, incnmaster, {.i = +1 } },
|
|
|
|
|
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
|
2008-06-11 19:41:28 +00:00
|
|
|
|
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
|
|
|
|
|
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
|
|
|
|
|
{ MODKEY, XK_Return, zoom, {0} },
|
|
|
|
|
{ MODKEY, XK_Tab, view, {0} },
|
|
|
|
|
{ MODKEY|ShiftMask, XK_c, killclient, {0} },
|
2020-10-11 16:56:12 +00:00
|
|
|
|
{ MODKEY|ShiftMask, XK_t, setlayout, {.v = &layouts[0]} },
|
|
|
|
|
{ MODKEY|ShiftMask, XK_f, setlayout, {.v = &layouts[1]} },
|
|
|
|
|
{ MODKEY|ShiftMask, XK_m, setlayout, {.v = &layouts[2]} },
|
2020-10-11 17:52:48 +00:00
|
|
|
|
{ MODKEY|ShiftMask, XK_u, setlayout, {.v = &layouts[3]} },
|
|
|
|
|
{ MODKEY|ShiftMask, XK_o, setlayout, {.v = &layouts[4]} },
|
2020-10-11 18:00:52 +00:00
|
|
|
|
{ MODKEY|ShiftMask, XK_g, setlayout, {.v = &layouts[5]} },
|
2020-10-11 16:56:12 +00:00
|
|
|
|
{ MODKEY|ShiftMask, XK_d, setlayout, {0} },
|
2008-06-11 19:41:28 +00:00
|
|
|
|
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
2008-06-11 08:12:06 +00:00
|
|
|
|
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
|
|
|
|
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
2009-07-02 19:37:26 +00: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 } },
|
2008-06-11 19:41:28 +00:00
|
|
|
|
TAGKEYS( XK_1, 0)
|
|
|
|
|
TAGKEYS( XK_2, 1)
|
|
|
|
|
TAGKEYS( XK_3, 2)
|
|
|
|
|
TAGKEYS( XK_4, 3)
|
2023-04-15 10:39:44 +00:00
|
|
|
|
TAGKEYS( XK_5, 4)
|
|
|
|
|
TAGKEYS( XK_6, 5)
|
2008-06-11 19:41:28 +00:00
|
|
|
|
{ MODKEY|ShiftMask, XK_q, quit, {0} },
|
2006-08-02 14:46:59 +00:00
|
|
|
|
};
|
2008-06-11 19:41:28 +00:00
|
|
|
|
|
|
|
|
|
/* button definitions */
|
2018-05-25 04:56:36 +00:00
|
|
|
|
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
2022-08-18 16:13:08 +00:00
|
|
|
|
static const Button buttons[] = {
|
2008-06-11 19:41:28 +00:00
|
|
|
|
/* click event mask button function argument */
|
2008-06-19 10:38:53 +00:00
|
|
|
|
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
|
|
|
|
|
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
|
2008-06-11 19:41:28 +00:00
|
|
|
|
{ ClkWinTitle, 0, Button2, zoom, {0} },
|
2008-06-14 09:38:18 +00:00
|
|
|
|
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
2008-06-11 19:41:28 +00:00
|
|
|
|
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
|
|
|
|
|
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
|
|
|
|
|
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
|
2008-06-24 11:40:48 +00:00
|
|
|
|
{ ClkTagBar, 0, Button1, view, {0} },
|
|
|
|
|
{ ClkTagBar, 0, Button3, toggleview, {0} },
|
|
|
|
|
{ ClkTagBar, MODKEY, Button1, tag, {0} },
|
2008-06-20 15:52:07 +00:00
|
|
|
|
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
|
2008-06-11 19:41:28 +00:00
|
|
|
|
};
|
|
|
|
|
|