all repos — dwm @ cdec9782a1789bd5c3a84772fd59abb9da288597

fork of suckless dynamic window manager

config.def.h (view raw)

  1/* See LICENSE file for copyright and license details. */
  2
  3/* appearance */
  4static const char font[]            = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
  5static const char normbordercolor[] = "#444444";
  6static const char normbgcolor[]     = "#222222";
  7static const char normfgcolor[]     = "#bbbbbb";
  8static const char selbordercolor[]  = "#005577";
  9static const char selbgcolor[]      = "#005577";
 10static const char selfgcolor[]      = "#eeeeee";
 11static const unsigned int borderpx  = 1;        /* border pixel of windows */
 12static const unsigned int snap      = 32;       /* snap pixel */
 13static const Bool showbar           = True;     /* False means no bar */
 14static const Bool topbar            = True;     /* False means bottom bar */
 15
 16/* tagging */
 17static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
 18
 19static const Rule rules[] = {
 20	/* xprop(1):
 21	 *	WM_CLASS(STRING) = instance, class
 22	 *	WM_NAME(STRING) = title
 23	 */
 24	/* class      instance    title       tags mask     isfloating   monitor */
 25	{ "Gimp",     NULL,       NULL,       0,            True,        -1 },
 26	{ "Firefox",  NULL,       NULL,       1 << 8,       False,       -1 },
 27};
 28
 29/* layout(s) */
 30static const float mfact      = 0.55; /* factor of master area size [0.05..0.95] */
 31static const int nmaster      = 1;    /* number of clients in master area */
 32static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
 33
 34static const Layout layouts[] = {
 35	/* symbol     arrange function */
 36	{ "[]=",      tile },    /* first entry is default */
 37	{ "><>",      NULL },    /* no layout function means floating behavior */
 38	{ "[M]",      monocle },
 39};
 40
 41/* key definitions */
 42#define MODKEY Mod1Mask
 43#define TAGKEYS(KEY,TAG) \
 44	{ MODKEY,                       KEY,      view,           {.ui = 1 << TAG} }, \
 45	{ MODKEY|ControlMask,           KEY,      toggleview,     {.ui = 1 << TAG} }, \
 46	{ MODKEY|ShiftMask,             KEY,      tag,            {.ui = 1 << TAG} }, \
 47	{ MODKEY|ControlMask|ShiftMask, KEY,      toggletag,      {.ui = 1 << TAG} },
 48
 49/* helper for spawning shell commands in the pre dwm-5.0 fashion */
 50#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
 51
 52/* commands */
 53static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
 54static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
 55static const char *termcmd[]  = { "st", NULL };
 56
 57static Key keys[] = {
 58	/* modifier                     key        function        argument */
 59	{ MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
 60	{ MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
 61	{ MODKEY,                       XK_b,      togglebar,      {0} },
 62	{ MODKEY,                       XK_j,      focusstack,     {.i = +1 } },
 63	{ MODKEY,                       XK_k,      focusstack,     {.i = -1 } },
 64	{ MODKEY,                       XK_i,      incnmaster,     {.i = +1 } },
 65	{ MODKEY,                       XK_d,      incnmaster,     {.i = -1 } },
 66	{ MODKEY,                       XK_h,      setmfact,       {.f = -0.05} },
 67	{ MODKEY,                       XK_l,      setmfact,       {.f = +0.05} },
 68	{ MODKEY,                       XK_Return, zoom,           {0} },
 69	{ MODKEY,                       XK_Tab,    view,           {0} },
 70	{ MODKEY|ShiftMask,             XK_c,      killclient,     {0} },
 71	{ MODKEY,                       XK_t,      setlayout,      {.v = &layouts[0]} },
 72	{ MODKEY,                       XK_f,      setlayout,      {.v = &layouts[1]} },
 73	{ MODKEY,                       XK_m,      setlayout,      {.v = &layouts[2]} },
 74	{ MODKEY,                       XK_space,  setlayout,      {0} },
 75	{ MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
 76	{ MODKEY,                       XK_0,      view,           {.ui = ~0 } },
 77	{ MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
 78	{ MODKEY,                       XK_comma,  focusmon,       {.i = -1 } },
 79	{ MODKEY,                       XK_period, focusmon,       {.i = +1 } },
 80	{ MODKEY|ShiftMask,             XK_comma,  tagmon,         {.i = -1 } },
 81	{ MODKEY|ShiftMask,             XK_period, tagmon,         {.i = +1 } },
 82	TAGKEYS(                        XK_1,                      0)
 83	TAGKEYS(                        XK_2,                      1)
 84	TAGKEYS(                        XK_3,                      2)
 85	TAGKEYS(                        XK_4,                      3)
 86	TAGKEYS(                        XK_5,                      4)
 87	TAGKEYS(                        XK_6,                      5)
 88	TAGKEYS(                        XK_7,                      6)
 89	TAGKEYS(                        XK_8,                      7)
 90	TAGKEYS(                        XK_9,                      8)
 91	{ MODKEY|ShiftMask,             XK_q,      quit,           {0} },
 92};
 93
 94/* button definitions */
 95/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
 96static Button buttons[] = {
 97	/* click                event mask      button          function        argument */
 98	{ ClkLtSymbol,          0,              Button1,        setlayout,      {0} },
 99	{ ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
100	{ ClkWinTitle,          0,              Button2,        zoom,           {0} },
101	{ ClkStatusText,        0,              Button2,        spawn,          {.v = termcmd } },
102	{ ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
103	{ ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
104	{ ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
105	{ ClkTagBar,            0,              Button1,        view,           {0} },
106	{ ClkTagBar,            0,              Button3,        toggleview,     {0} },
107	{ ClkTagBar,            MODKEY,         Button1,        tag,            {0} },
108	{ ClkTagBar,            MODKEY,         Button3,        toggletag,      {0} },
109};
110