static const char selfgcolor[] = "#eeeeee";
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
+static const unsigned int systrayspacing = 2; /* systray spacing */
+static const Bool showsystray = True; /* False means no systray */
static const Bool showbar = True; /* False means no bar */
static const Bool topbar = True; /* False means bottom bar */
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating monitor */
- { "Gimp", NULL, NULL, 0, True, -1 },
- { "Firefox", NULL, NULL, 1 << 8, False, -1 },
+ { "Thunderbird", NULL, NULL, 0, False, 1 },
+ { "Gajim", NULL, NULL, 1 << 1, False, 1 },
};
/* layout(s) */
/* commands */
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
-static const char *termcmd[] = { "xfce4-terminal", NULL };
+static const char *termcmd[] = { "rxvt-unicode", NULL };
static const char *browsercmd[] = { "firefox", NULL };
static const char *projectcmd[] = { "launchProjectVim.sh", NULL };
+static const char *lockcmd[] = { "slock", NULL };
+static const char *filecmd[] = { "pcmanfm", NULL };
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
{ MODKEY|ShiftMask, XK_e, spawn, {.v = browsercmd } },
+ { MODKEY|ShiftMask, XK_f, spawn, {.v = filecmd } },
+ { MODKEY|ShiftMask, XK_l, spawn, {.v = lockcmd } },
{ MODKEY, XK_v, spawn, {.v = projectcmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },