Commit 5bf1648
Changed files (1)
config.h
@@ -25,8 +25,7 @@ static const Rule rules[] = {
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating monitor */
- /*{ "Gimp", NULL, NULL, 0, 1, -1 },*/
- { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
+ { "Firefox", NULL, NULL, 1, 0, -1 },
};
/* layout(s) */
@@ -37,7 +36,6 @@ static const int resizehints = 1; /* 1 means respect size hints in tiled resi
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
- //{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
};
@@ -59,8 +57,8 @@ static const char *termcmd[] = { "st", NULL };
static const char *firefox[] = { "firefox", NULL };
static const char *bldec[] = { "xbacklight", "-", "1"};
static const char *blinc[] = { "xbacklight", "+", "1"};
-static const char *blmax[] = { "xbacklight", "-set", "100"};
static const char *blmin[] = { "xbacklight", "-set", "1"};
+static const char *blmax[] = { "xbacklight", "-set", "100"};
static Key keys[] = {
/* modifier key function argument */
@@ -82,10 +80,8 @@ static Key keys[] = {
{ 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[1]} },
{ 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 } },