all repos — dwm @ 7b4c512e627952015367993bb553e67e720cd716

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-normal-*-14-*-*-*-*-*-*-*";
  5static const char normbordercolor[] = "#cccccc";
  6static const char normbgcolor[]     = "#cccccc";
  7static const char normfgcolor[]     = "#000000";
  8static const char selbordercolor[]  = "#0066ff";
  9static const char selbgcolor[]      = "#0066ff";
 10static const char selfgcolor[]      = "#ffffff";
 11static uint borderpx                = 1;        /* border pixel of windows */
 12static uint snap                    = 32;       /* snap pixel */
 13static Bool showbar                 = True;     /* False means no bar */
 14static Bool topbar                  = True;     /* False means bottom bar */
 15
 16#ifdef XINERAMA
 17static uint xidx                    = 0;        /* Xinerama screen index to use */
 18#endif
 19
 20/* tagging */
 21static const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
 22
 23static Rule rules[] = {
 24	/* class      instance    title       tags mask     isfloating */
 25	{ "Gimp",     NULL,       NULL,       0,            True },
 26	{ "Firefox",  NULL,       NULL,       1 << 8,       True },
 27};
 28
 29/* layout(s) */
 30static float mfact      = 0.55;
 31static Bool resizehints = True; /* False means respect size hints in tiled resizals */
 32
 33static Layout layouts[] = {
 34	/* symbol     arrange function */
 35	{ "[]=",      tile },    /* first entry is default */
 36	{ "><>",      NULL },    /* no layout function means floating behavior */
 37	{ "[M]",      monocle }, /* first entry is default */
 38};
 39
 40/* key definitions */
 41#define MODKEY Mod1Mask
 42#define TAGKEYS(KEY,TAG) \
 43	{ MODKEY,                       KEY,      view,           {.ui = 1 << TAG} }, \
 44	{ MODKEY|ControlMask,           KEY,      toggleview,     {.ui = 1 << TAG} }, \
 45	{ MODKEY|ShiftMask,             KEY,      tag,            {.ui = 1 << TAG} }, \
 46	{ MODKEY|ControlMask|ShiftMask, KEY,      toggletag,      {.ui = 1 << TAG} },
 47
 48/* helper for spawning shell commands in the pre dwm-5.0 fashion */
 49#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
 50
 51/* commands */
 52static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
 53static const char *termcmd[]  = { "uxterm", NULL };
 54
 55static Key keys[] = {
 56	/* modifier                     key        function        argument */
 57	{ MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
 58	{ MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
 59	{ MODKEY,                       XK_b,      togglebar,      {0} },
 60	{ MODKEY,                       XK_j,      focusstack,     {.i = +1 } },
 61	{ MODKEY,                       XK_k,      focusstack,     {.i = -1 } },
 62	{ MODKEY,                       XK_h,      setmfact,       {.f = -0.05} },
 63	{ MODKEY,                       XK_l,      setmfact,       {.f = +0.05} },
 64	{ MODKEY,                       XK_Return, zoom,           {0} },
 65	{ MODKEY,                       XK_Tab,    view,           {0} },
 66	{ MODKEY|ShiftMask,             XK_c,      killclient,     {0} },
 67	{ MODKEY,                       XK_t,      setlayout,      {.v = &layouts[0]} },
 68	{ MODKEY,                       XK_f,      setlayout,      {.v = &layouts[1]} },
 69	{ MODKEY,                       XK_m,      setlayout,      {.v = &layouts[2]} },
 70	{ MODKEY,                       XK_space,  setlayout,      {0} },
 71	{ MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
 72	{ MODKEY,                       XK_0,      view,           {.ui = ~0 } },
 73	{ MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
 74	TAGKEYS(                        XK_1,                      0)
 75	TAGKEYS(                        XK_2,                      1)
 76	TAGKEYS(                        XK_3,                      2)
 77	TAGKEYS(                        XK_4,                      3)
 78	TAGKEYS(                        XK_5,                      4)
 79	TAGKEYS(                        XK_6,                      5)
 80	TAGKEYS(                        XK_7,                      6)
 81	TAGKEYS(                        XK_8,                      7)
 82	TAGKEYS(                        XK_9,                      8)
 83	{ MODKEY|ShiftMask,             XK_q,      quit,           {0} },
 84};
 85
 86/* button definitions */
 87/* click can be a tag number (starting at 0),
 88 * ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
 89static Button buttons[] = {
 90	/* click                event mask      button          function        argument */
 91	{ ClkLtSymbol,          0,              Button1,        setlayout,      {0} },
 92	{ ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
 93	{ ClkWinTitle,          0,              Button2,        zoom,           {0} },
 94	{ ClkStatusText,        0,              Button2,        spawn,          {.v = termcmd } },
 95	{ ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
 96	{ ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
 97	{ ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
 98	{ ClkTagBar,            0,              Button1,        view,           {0} }, \
 99	{ ClkTagBar,            0,              Button3,        toggleview,     {0} }, \
100	{ ClkTagBar,            MODKEY,         Button1,        tag,            {0} }, \
101	{ ClkTagBar,            MODKEY,         Button3,        toggletag,      {0} },
102};
103