Información Importante Sobre el Contenido
Estas accediendo al contenido antiguo del blog. Este artículo "Dymamic Window Manager (DWM): Mi nuevo gestor de ventanas" es de dominio público y no será mantenido a futuro. Cualquier error o problema acerca del contenido por favor contactate conmigo desde la sección contacto.
El otro día leí en irc que hablaban sobre ScrotWM y lo probé. En un principio me gustó mucho, demasiado sencillo y ligero, luego de usarlo un par de minutos ya me estába dando problemas con algunas ventanas flotantes y para no quedarme con las ganas entonces lo cambié por Dynamic Window Manager (DWM).
La gracia de este gestor de ventanas es que es demasiado simple, tiene no mas de 2 mil líneas de código, no usa archivos de configuración y claro, para configurarlo hay que editar directamente el código fuente y volver a compilarlo y re-ejecutarlo para que tome los cambios.
[zerial@daila dwm-5.6.1]$ wc -l dwm.c
1959 dwm.c
[zerial@daila dwm-5.6.1]
Esto último, a muchos les puede provocar un trauma pero no es tan dificil como parece, aunque yo vengo de un entorno fluxbox por lo que cambiarme a dwm no me costó tanto.
Algunos screenshots:
Todavía no lo modifico mucho, sólo configuré los workspaces, algunas aplicaciones y los atajos de teclado, pero acá les dejo mi configuración (fichero config.h).
-
/* See LICENSE file for copyright and license details. */
-
-
/* appearance */
-
static const char font[] = "-*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*";
-
static const char normbordercolor[] = "#cccccc";
-
static const char normbgcolor[] = "#cccccc";
-
static const char normfgcolor[] = "#000000";
-
static const char selbordercolor[] = "green";
-
static const char selbgcolor[] = "black";
-
static const char selfgcolor[] = "green";
-
static const unsigned int borderpx = 1; /* 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[] = { "www", "mail", "media", "terms1", "terms2", "terms3", "terms4", "terms5", "apps" };
-
-
static const Rule rules[] = {
-
/* class instance title tags mask isfloating monitor */
-
{ "Gimp", NULL, NULL, 1 < < 8, True, -1 },
-
{ "Pidgin", NULL, NULL, 1 << 8, True, -1 },
-
{ "psi", NULL, NULL, 1 << 8, True, -1 },
-
{ "X-Chat", NULL, NULL, 1 << 8, True, -1 },
-
{ "Zenity", NULL, NULL, 0, True, -1 },
-
};
-
-
/* layout(s) */
-
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
-
static const Bool resizehints = True; /* False means respect size hints in tiled resizals */
-
-
static const Layout layouts[] = {
-
/* symbol arrange function */
-
{ "[]=", tile }, /* first entry is default */
-
{ "><>", NULL }, /* no layout function means floating behavior */
-
{ "[M]", monocle },
-
};
-
-
/* key definitions */
-
#define MODKEY Mod1Mask
-
#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} },
-
-
/* 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 const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
-
static const char *termcmd[] = { "urxvt", NULL };
-
static const char *webcmd[] = { "firefox", NULL };
-
static const char *mailcmd[] = { "thunderbird", NULL };
-
static const char *gimpcmd[] = { "gimp", NULL };
-
static const char *twitcmd[] = { "twitsh", NULL };
-
-
static Key keys[] = {
-
/* modifier key function argument */
-
{ MODKEY|ShiftMask, XK_f, spawn, {.v = webcmd } },
-
{ MODKEY|ShiftMask, XK_m, spawn, {.v = mailcmd } },
-
{ MODKEY|ShiftMask, XK_g, spawn, {.v = gimpcmd } },
-
{ MODKEY|ShiftMask, XK_s, spawn, {.v = twitcmd } },
-
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
-
{ MODKEY, XK_x, 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 } },
-
{ 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 } },
-
TAGKEYS( XK_F1, 0)
-
TAGKEYS( XK_F2, 1)
-
TAGKEYS( XK_F3, 2)
-
TAGKEYS( XK_F4, 3)
-
TAGKEYS( XK_F5, 4)
-
TAGKEYS( XK_F6, 5)
-
TAGKEYS( XK_F7, 6)
-
TAGKEYS( XK_F8, 7)
-
TAGKEYS( XK_F9, 8)
-
{ MODKEY|ShiftMask, XK_q, quit, {0} },
-
};
-
-
/* button definitions */
-
/* click can be a tag number (starting at 0),
-
* 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} },
-
};
Información Importante Sobre el Contenido
Estas accediendo al contenido antiguo del blog. Este artículo "Dymamic Window Manager (DWM): Mi nuevo gestor de ventanas" es de dominio público y no será mantenido a futuro. Cualquier error o problema acerca del contenido por favor contactate conmigo desde la sección contacto.
agosto 29, 2009 a las 2:02 pm
Le andas copiando a osu. 🙂
Yo no cambio mi wmii.
agosto 29, 2009 a las 2:25 pm
Usa enlightenment… 🙂
agosto 29, 2009 a las 4:33 pm
@Nano el marica del osu usa gnome
@Chuby naaaa, galletin nomas
agosto 30, 2009 a las 4:46 am
leet jax0r
agosto 30, 2009 a las 3:12 pm
Muy bueno DWM, lo ocupo hace un tiempo ya y es genial,
saludos.
septiembre 1, 2009 a las 12:53 am
Mish, que es re maricon este: me vilipendia y yo que le recomende la mierda de wm. No te voy a dar los patches pa mover apps entre workspaces xD
septiembre 1, 2009 a las 1:25 am
@osu no importa, te los quito!!!!
$ telnet osu.emma 31337
Welcome to osu’s box!
> dir
xxx pr0n g4y sw1ng3r dwm-patches
> get dwm-patches
Downloading …. done
> quit
$