dotless

automated dotfiles setup for all my systems
Log | Files | Refs | README | LICENSE

config.h (7167B)


      1 /* See LICENSE file for copyright and license details. */
      2 #ifndef FONT
      3         #define FONT "Cozette-10:size=10"
      4 #endif
      5 #ifdef LAPTOP
      6         #define XK_Mute  0x008ff12
      7         #define XK_AUp   0x100ff13
      8         #define XK_ADown 0x1008ff11
      9 #endif
     10 
     11 /* appearance */
     12 static const unsigned int borderpx  = 1;        /* border pixel of windows */
     13 static const unsigned int snap      = 32;       /* snap pixel */
     14 static const int showbar            = 1;        /* 0 means no bar */
     15 static const int topbar             = 1;        /* 0 means bottom bar */
     16 static const char *fonts[]          = { FONT };
     17 static const char dmenufont[]       = FONT;
     18 static const char col_gray1[]       = "#222222";
     19 static const char col_gray2[]       = "#444444";
     20 static const char col_gray3[]       = "#bbbbbb";
     21 static const char col_gray4[]       = "#eeeeee";
     22 static const char col_cyan[]        = "#005577";
     23 static const char *colors[][3]      = {
     24 	/*               fg         bg         border   */
     25 	[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
     26 	[SchemeSel]  = { col_gray4, col_cyan,  col_cyan  },
     27 };
     28 
     29 /* tagging */
     30 static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
     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 Mod4Mask
     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 #ifdef LAPTOP
     73 #ifndef VOL
     74         #define VOL 5
     75 #endif
     76 static const char *voltog[]   = { "volume.sh", "tog", NULL };
     77 static const char *volup[]    = { "volume.sh", "up", VOL, NULL};
     78 static const char *voldown[]  = { "volume.sh", "down", VOL, NULL };
     79 #endif
     80 
     81 static const Key keys[] = {
     82 	/* modifier                     key        function        argument */
     83 	{ MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
     84 	{ MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
     85 	{ MODKEY,                       XK_b,      togglebar,      {0} },
     86 	{ MODKEY,                       XK_j,      focusstack,     {.i = +1 } },
     87 	{ MODKEY,                       XK_k,      focusstack,     {.i = -1 } },
     88 	{ MODKEY,                       XK_i,      incnmaster,     {.i = +1 } },
     89 	{ MODKEY,                       XK_d,      incnmaster,     {.i = -1 } },
     90 	{ MODKEY,                       XK_h,      setmfact,       {.f = -0.05} },
     91 	{ MODKEY,                       XK_l,      setmfact,       {.f = +0.05} },
     92 	{ MODKEY,                       XK_Return, zoom,           {0} },
     93 	{ MODKEY,                       XK_Tab,    view,           {0} },
     94 	{ MODKEY|ShiftMask,             XK_c,      killclient,     {0} },
     95 	{ MODKEY,                       XK_t,      setlayout,      {.v = &layouts[0]} },
     96 	{ MODKEY,                       XK_f,      setlayout,      {.v = &layouts[1]} },
     97 	{ MODKEY,                       XK_m,      setlayout,      {.v = &layouts[2]} },
     98 	{ MODKEY,                       XK_space,  setlayout,      {0} },
     99 	{ MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
    100 	{ MODKEY,                       XK_0,      view,           {.ui = ~0 } },
    101 	{ MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
    102 	{ MODKEY,                       XK_comma,  focusmon,       {.i = -1 } },
    103 	{ MODKEY,                       XK_period, focusmon,       {.i = +1 } },
    104 	{ MODKEY|ShiftMask,             XK_comma,  tagmon,         {.i = -1 } },
    105 	{ MODKEY|ShiftMask,             XK_period, tagmon,         {.i = +1 } },
    106 	TAGKEYS(                        XK_1,                      0)
    107 	TAGKEYS(                        XK_2,                      1)
    108 	TAGKEYS(                        XK_3,                      2)
    109 	TAGKEYS(                        XK_4,                      3)
    110 	TAGKEYS(                        XK_5,                      4)
    111 	TAGKEYS(                        XK_6,                      5)
    112 	TAGKEYS(                        XK_7,                      6)
    113 	TAGKEYS(                        XK_8,                      7)
    114 	TAGKEYS(                        XK_9,                      8)
    115 #ifdef LAPTOP
    116         { 0,                            XK_Mute,  spawn,           {.v = voltog } },
    117         { 0,                            XK_AUp,   spawn,           {.v = volup } },
    118         { 0,                            XK_ADown, spawn,           {.v = voldown } },
    119 #endif
    120 	{ MODKEY|ShiftMask,             XK_q,      quit,           {0} },
    121 };
    122 
    123 /* button definitions */
    124 /* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
    125 static const Button buttons[] = {
    126 	/* click                event mask      button          function        argument */
    127 	{ ClkLtSymbol,          0,              Button1,        setlayout,      {0} },
    128 	{ ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
    129 	{ ClkWinTitle,          0,              Button2,        zoom,           {0} },
    130 	{ ClkStatusText,        0,              Button2,        spawn,          {.v = termcmd } },
    131 	{ ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
    132 	{ ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
    133 	{ ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
    134 	{ ClkTagBar,            0,              Button1,        view,           {0} },
    135 	{ ClkTagBar,            0,              Button3,        toggleview,     {0} },
    136 	{ ClkTagBar,            MODKEY,         Button1,        tag,            {0} },
    137 	{ ClkTagBar,            MODKEY,         Button3,        toggletag,      {0} },
    138 };
    139