dwm

My build of dwm from suckless
git clone https://git.regexghost.com/dwm.git
Log | Files | Refs | README | LICENSE

config.def.h (7054B)


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