JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix keys pressed while kbspawn key is still down
[dwm.git] / config.def.h
index bb60471..c37cb21 100644 (file)
 /* See LICENSE file for copyright and license details. */
 
 /* appearance */
-static const char font[]            = "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*";
-static const char normbordercolor[] = "#cccccc";
-static const char normbgcolor[]     = "#cccccc";
-static const char normfgcolor[]     = "#000000";
-static const char selbordercolor[]  = "#0066ff";
-static const char selbgcolor[]      = "#0066ff";
-static const char selfgcolor[]      = "#ffffff";
-static unsigned int borderpx        = 1;        /* border pixel of windows */
-static unsigned int snap            = 32;       /* snap pixel */
-static Bool showbar                 = True;     /* False means no bar */
-static Bool topbar                  = True;     /* False means bottom bar */
-static Bool usegrab                 = False;    /* True means grabbing the X server
-                                                   during mouse-based resizals */
+static const char font[]            = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
+static const char normbordercolor[] = "#444444";
+static const char normbgcolor[]     = "#222222";
+static const char normfgcolor[]     = "#bbbbbb";
+static const char selbordercolor[]  = "#005577";
+static const char selbgcolor[]      = "#005577";
+static const char selfgcolor[]      = "#eeeeee";
+static const unsigned int borderpx  = 0;        /* border pixel of windows */
+static const unsigned int snap      = 32;       /* snap pixel */
+static const Bool showbar           = True;     /* False means no bar */
+static const Bool topbar            = True;     /* False means bottom bar */
 
 /* tagging */
-static const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
-static unsigned int tagset[] = {1, 1}; /* after start, first tag is selected */
+static const char *tags[] = { "`", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "[", "]" };
+static const char *workspace_numbers_str[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" };
 
-static Rule rules[] = {
-       /* class      instance    title       tags mask     isfloating */
-       { "Gimp",     NULL,       NULL,       0,            True },
-       { "Firefox",  NULL,       NULL,       1 << 8,       True },
+#define TBC(tag, wclass) { wclass, NULL, NULL, 1 << tag, False, False, -1 },
+#define TBT(tag, title) { NULL, NULL, title, 1 << tag, False, False, -1 },
+#define SHBC(tag, wclass) { wclass, NULL, NULL, 1 << tag, False, True, -1 },
+static const Rule rules[] = {
+       /* xprop(1):
+        *      WM_CLASS(STRING) = instance, class
+        *      WM_NAME(STRING) = title
+        */
+       // Tag By Class
+       TBC( 1, "Chromium")
+       //TBC( 7, "Firefox")
+       TBC( 7, "Iceweasel")
+       TBC( 9, "Transmission-gtk")
+       TBC(10, "Pidgin")
+       // Screen Hog (By class) + tag
+       SHBC( 2, "Inkscape")
+       SHBC( 2, "org-openstreetmap-josm-Main") // Josm (both splash and main window)
+       SHBC( 3, "VirtualBox")
+       SHBC( 5, "Gimp")
+       // Tag By Title (matches prefix)
+       TBT( 1, "w1: ")
+       TBT( 2, "w2: ")
+       TBT( 3, "w3: ")
+       TBT( 4, "w4: ")
+       TBT( 5, "w5: ")
+       TBT( 6, "w6: ")
+       TBT( 7, "w7: ")
+       TBT( 8, "w8: ")
+       TBT( 9, "w9: ")
+       TBT(10, "w10: ")
+       TBT(11, "w11: ")
+       TBT(12, "w12: ")
+       // make run dialog floating
+       { NULL, "zsh_run", NULL, 0, True, False, -1 },
 };
 
 /* layout(s) */
-static float mfact      = 0.55; /* factor of master area size [0.05..0.95] */
-static Bool resizehints = True; /* False means respect size hints in tiled resizals */
+static const float mfact      = 0.595; /* factor of master area size [0.05..0.95] */
+static const int nmaster      = 1;    /* number of clients in master area */
+static const Bool resizehints = False; /* True means respect size hints in tiled resizals */
 
-static Layout layouts[] = {
+static const Layout layouts[] = {
        /* symbol     arrange function */
-       { "[]=",      tile },    /* first entry is default */
-       { "><>",      NULL },    /* no layout function means floating behavior */
-       { "[M]",      monocle },
+       { "   ",      jason_layout },
+       { "Flo",      NULL },    // floating (don't think this gets used ever)
+       { "   ",      monocle }, // symbol is ignored
 };
 
 /* key definitions */
-#define MODKEY Mod1Mask
+#define MODKEY Mod4Mask
 #define TAGKEYS(KEY,TAG) \
        { 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} },
+       { MODKEY|ControlMask|ShiftMask, KEY,      toggletag,      {.ui = 1 << TAG} }
 
 /* helper for spawning shell commands in the pre dwm-5.0 fashion */
 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
 
 /* commands */
+static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
+//static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
 static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
-static const char *termcmd[]  = { "uxterm", NULL };
+char WORKSPACE_NUMBER[] = "WORKSPACE_NUMBER=00";
+static const char *termcmd[]  = { "env", (const char *)(&(WORKSPACE_NUMBER[0])), "st", NULL };
+
+#define ARGS(...) {.v = (const char *[]) {__VA_ARGS__, NULL}}
 
 static Key keys[] = {
-       /* modifier                     key        function        argument */
-       { MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
-       { MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
-       { MODKEY,                       XK_b,      togglebar,      {0} },
-       { MODKEY,                       XK_j,      focusstack,     {.i = +1 } },
-       { MODKEY,                       XK_k,      focusstack,     {.i = -1 } },
-       { 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} },
-       { MODKEY,                       XK_t,      setlayout,      {.v = &layouts[0]} },
-       { MODKEY,                       XK_f,      setlayout,      {.v = &layouts[1]} },
-       { MODKEY,                       XK_m,      setlayout,      {.v = &layouts[2]} },
-       { MODKEY,                       XK_space,  setlayout,      {0} },
-       { MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
-       { MODKEY,                       XK_0,      view,           {.ui = ~0 } },
-       { MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
-       TAGKEYS(                        XK_1,                      0)
-       TAGKEYS(                        XK_2,                      1)
-       TAGKEYS(                        XK_3,                      2)
-       TAGKEYS(                        XK_4,                      3)
-       TAGKEYS(                        XK_5,                      4)
-       TAGKEYS(                        XK_6,                      5)
-       TAGKEYS(                        XK_7,                      6)
-       TAGKEYS(                        XK_8,                      7)
-       TAGKEYS(                        XK_9,                      8)
-       { MODKEY|ShiftMask,             XK_q,      quit,           {0} },
+       /* modifier           key                      function        argument */
+       {0,                   XK_Scroll_Lock,          spawn,          ARGS("pulseaudio-set-sink", "toggle")},
+       {ControlMask,         XK_Scroll_Lock,          spawn,          ARGS("pulseaudio-set-sink", "headphones")},
+       {ShiftMask,           XK_Scroll_Lock,          spawn,          ARGS("pulseaudio-set-sink", "speakers")},
+       {0,                   XK_Pause,                spawn,          ARGS("black", "0.2")},
+       {0,                   XK_F3,                   spawn,          ARGS("vol", "down")},
+       {0,                   XF86XK_AudioLowerVolume, spawn,          ARGS("vol", "down")},
+       {0,                   XK_F4,                   spawn,          ARGS("vol", "up")},
+       {0,                   XF86XK_AudioRaiseVolume, spawn,          ARGS("vol", "up")},
+       {0,                   XF86XK_AudioPrev,        spawn,          ARGS("sayremote", "back")},
+       {0,                   XK_F5,                   spawn,          ARGS("sayremote", "back")},
+       {MODKEY,              XK_F5,                   spawn,          ARGS("sayremote", "slower")},
+       {0,                   XF86XK_AudioNext,        spawn,          ARGS("sayremote", "forward")},
+       {0,                   XK_F6,                   spawn,          ARGS("sayremote", "forward")},
+       {MODKEY,              XK_F6,                   spawn,          ARGS("sayremote", "faster")},
+       {0,                   XK_F7,                   spawn,          ARGS("sayremote", "pause")},
+       {0,                   XF86XK_AudioPause,       spawn,          ARGS("sayremote", "pause")},
+       {0,                   XF86XK_AudioStop,        spawn,          ARGS("sayremote", "stop")},
+       {0,                   XK_F8,                   spawn,          ARGS("sayremote", "stop")},
+       {MODKEY,              XK_F8,                   spawn,          ARGS("sayremote", "reset")},
+       {0,                   XK_F10,                  spawn,          ARGS("sayclip")},
+       {ControlMask,         XK_Return,               spawn,          ARGS("default-browser-clipboard")},
+       {MODKEY,              XK_Return,               spawn,          ARGS("default-browser-debian-bug")},
+       {0,                   XK_F1,                   kbspawn,        ARGS("run-dialog")},
+       {MODKEY,              XK_l,                    view,           {.ui = 1 << 1}},
+       {MODKEY,              XK_l,                    focusstack,     {.i = 0}},
+       {MODKEY,              XK_l,                    kbspawn,        ARGS("url-dialog")},
+       {0,                   XK_F2,                   kbspawn,        {.v = termcmd}},
+       {MODKEY,              XK_b,                    togglebar,      {0}},
+       {MODKEY,              XK_n,                    focusstack,     {.i = +1}},
+       {MODKEY,              XK_h,                    focusstack,     {.i = 0}},
+       {MODKEY,              XK_c,                    focusstack,     {.i = -1}},
+//     {MODKEY,              XK_i,                    incnmaster,     {.i = +1}},
+//     {MODKEY,              XK_d,                    incnmaster,     {.i = -1}},
+       {MODKEY|ControlMask,  XK_h,                    setmfact,       {.f = -0.05}},
+       {MODKEY|ControlMask,  XK_n,                    setmfact,       {.f = +0.05}},
+       {MODKEY|ShiftMask,    XK_h,                    zoom,           {0}},
+       {MODKEY,              XK_Tab,                  view,           {0}},
+       {MODKEY,              XK_w,                    killclient,     {0}},
+       {MODKEY|ShiftMask,    XK_f,                    setlayout,      {.v = &layouts[0]}},
+       {MODKEY,              XK_f,                    setlayout,      {.v = &layouts[2]}},
+//     {MODKEY,              XK_space,                setlayout,      {0}},
+       {MODKEY|ShiftMask,    XK_space,                togglefloating, {0}},
+//     {MODKEY,              XK_0,                    view,           {.ui = ~0}},
+//     {MODKEY|ShiftMask,    XK_0,                    tag,            {.ui = ~0}},
+//     {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}},
+       {MODKEY|ShiftMask,    XK_q,                    quit,           {0}},
+       TAGKEYS(              XK_grave,        0),
+       TAGKEYS(              XK_1,            1),
+       TAGKEYS(              XK_2,            2),
+       TAGKEYS(              XK_3,            3),
+       TAGKEYS(              XK_4,            4),
+       TAGKEYS(              XK_5,            5),
+       TAGKEYS(              XK_6,            6),
+       TAGKEYS(              XK_7,            7),
+       TAGKEYS(              XK_8,            8),
+       TAGKEYS(              XK_9,            9),
+       TAGKEYS(              XK_0,            10),
+       TAGKEYS(              XK_bracketleft,  11),
+       TAGKEYS(              XK_bracketright, 12),
 };
 
+// X.h defines Button1 through Button5
+#ifndef Button8
+       #define Button8 (Button1 + 7)
+#endif
+
 /* button definitions */
-/* click can be a tag number (starting at 0),
- * ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
+/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
 static Button buttons[] = {
-       /* click                event mask      button          function        argument */
-       { ClkLtSymbol,          0,              Button1,        setlayout,      {0} },
-       { ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
-       { ClkWinTitle,          0,              Button2,        zoom,           {0} },
-       { ClkStatusText,        0,              Button2,        spawn,          {.v = termcmd } },
-       { ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
-       { ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
-       { ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
-       { ClkTagBar,            0,              Button1,        view,           {0} },
-       { ClkTagBar,            0,              Button3,        toggleview,     {0} },
-       { ClkTagBar,            MODKEY,         Button1,        tag,            {0} },
-       { ClkTagBar,            MODKEY,         Button3,        toggletag,      {0} },
+       /* click               event mask      button          function        argument */
+       {ClkAnywhere,          0,              Button8,        spawn,          ARGS("sayclip", "--no-terminal")},
+       {ClkClientWin,         MODKEY,         Button1,        movemouse,      {0}},
+       {ClkClientWin,         MODKEY,         Button2,        togglefloating, {0}},
+       {ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0}},
 };