Advertisement
Dj_Dexter

dwm-6.0

Apr 22nd, 2012
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 6.28 KB | None | 0 0
  1. /* See LICENSE file for copyright and license details. */
  2.  
  3. /* appearance */
  4. static const char font[]            = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
  5. static const char normbordercolor[] = "#FF0000"; //cccccc_rojo_ventanas en las que no estamos.
  6. static const char normbgcolor[]     = "#000000"; //cccccc_negro_fondo barra.
  7. static const char normfgcolor[]     = "#FFFF00"; //000000_amarillo_letras barra sin ejecutar nada.
  8. static const char selbordercolor[]  = "#00FF00"; //0066ff_verde_ventana en la que estamos.
  9. static const char selbgcolor[]      = "#545454"; //0066ff_gris_fondo barra al ejecutar terminal
  10. static const char selfgcolor[]      = "#FFFF00"; //ffffff_amarillo_letras barra al ejecutar terminal
  11. static const unsigned int borderpx  = 1;        /* border pixel of windows */
  12. static const unsigned int snap      = 32;       /* snap pixel */
  13. static const Bool showbar           = True;     /* False means no bar */
  14. static const Bool topbar            = True;     /* False means bottom bar */
  15.  
  16. /* tagging */
  17. static const char *tags[] = { "I", "II", "III", "IV", "V" };
  18.  
  19. static const Rule rules[] = {
  20.     /* class      instance    title       tags mask     isfloating   monitor */
  21.     { NULL,     NULL,       NULL,       0,            False,        -1 },
  22. };
  23.  
  24. /* layout(s) */
  25. static const float mfact      = 0.55; /* factor of master area size [0.05..0.95] */
  26. static const int nmaster      = 1;    /* number of clients in master area */
  27. static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
  28.  
  29. static const Layout layouts[] = {
  30.     /* symbol     arrange function */
  31.     /* first entry is default */
  32.     { "><>",      NULL },    /* no layout function means floating behavior */
  33.     { "[]=",      tile },
  34.     { "[M]",      monocle },
  35. };
  36.  
  37. /* key definitions */
  38. #define MODKEY Mod4Mask /*antes= Mod1Mask que es el alt, ahora esta la de windows*/
  39. #define TAGKEYS(KEY,TAG) \
  40.     { MODKEY,                       KEY,      view,           {.ui = 1 << TAG} }, \
  41.     { MODKEY|ControlMask,           KEY,      toggleview,     {.ui = 1 << TAG} }, \
  42.     { MODKEY|ShiftMask,             KEY,      tag,            {.ui = 1 << TAG} }, \
  43.     { MODKEY|ControlMask|ShiftMask, KEY,      toggletag,      {.ui = 1 << TAG} },
  44.  
  45. /* helper for spawning shell commands in the pre dwm-5.0 fashion */
  46. #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
  47.  
  48. /* commands */
  49. static const char *dmenucmd[] = { "gmrun", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
  50. static const char *termcmd[]  = { "urxvt", NULL };
  51. static const char *lockmonitor[]  = { "xlock", NULL };
  52.  
  53. static Key keys[] = {
  54.     /* modifier                     key        function        argument */
  55.     { MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
  56.     { MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
  57.         { MODKEY|ShiftMask,             XK_z,      spawn,          {.v = lockmonitor } },
  58.     { MODKEY,                       XK_b,      togglebar,      {0} },
  59.     { MODKEY,                       XK_j,      focusstack,     {.i = +1 } },
  60.     { MODKEY,                       XK_k,      focusstack,     {.i = -1 } },
  61.         { MODKEY,                       XK_i,      incnmaster,     {.i = +1 } },
  62.         { MODKEY,                       XK_d,      incnmaster,     {.i = -1 } },
  63.         { MODKEY,                       XK_h,      setmfact,       {.f = -0.05} },
  64.         { MODKEY,                       XK_l,      setmfact,       {.f = +0.05} },
  65.     { MODKEY,                       XK_Return, zoom,           {0} },
  66.     { MODKEY,                       XK_Tab,    view,           {0} },
  67.     { MODKEY|ShiftMask,             XK_c,      killclient,     {0} },
  68.     { MODKEY,                       XK_t,      setlayout,      {.v = &layouts[0]} },
  69.     { MODKEY,                       XK_f,      setlayout,      {.v = &layouts[1]} },
  70.     { MODKEY,                       XK_m,      setlayout,      {.v = &layouts[2]} },
  71.     { MODKEY,                       XK_space,  setlayout,      {0} },
  72.     { MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
  73.     { MODKEY,                       XK_0,      view,           {.ui = ~0 } },
  74.     { MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
  75.     { MODKEY,                       XK_comma,  focusmon,       {.i = -1 } },
  76.     { MODKEY,                       XK_period, focusmon,       {.i = +1 } },
  77.     { MODKEY|ShiftMask,             XK_comma,  tagmon,         {.i = -1 } },
  78.     { MODKEY|ShiftMask,             XK_period, tagmon,         {.i = +1 } },
  79.     TAGKEYS(                        XK_1,                      0)
  80.     TAGKEYS(                        XK_2,                      1)
  81.     TAGKEYS(                        XK_3,                      2)
  82.     TAGKEYS(                        XK_4,                      3)
  83.     TAGKEYS(                        XK_5,                      4)
  84.     TAGKEYS(                        XK_6,                      5)
  85.     TAGKEYS(                        XK_7,                      6)
  86.     TAGKEYS(                        XK_8,                      7)
  87.     TAGKEYS(                        XK_9,                      8)
  88.     { MODKEY|ShiftMask,             XK_q,      quit,           {0} },
  89. };
  90.  
  91. /* button definitions */
  92. /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
  93. static Button buttons[] = {
  94.     /* click                event mask      button          function        argument */
  95.     { ClkLtSymbol,          0,              Button1,        setlayout,      {0} },
  96.     { ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
  97.     { ClkWinTitle,          0,              Button2,        zoom,           {0} },
  98.     { ClkStatusText,        0,              Button2,        spawn,          {.v = termcmd } },
  99.     { ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
  100.     { ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
  101.     { ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
  102. //  { ClkTagBar,            0,              Button1,        view,           {0} },
  103. //  { ClkTagBar,            0,              Button3,        toggleview,     {0} },
  104. //  { ClkTagBar,            MODKEY,         Button1,        tag,            {0} },
  105. //  { ClkTagBar,            MODKEY,         Button3,        toggletag,      {0} },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement