commit 0d91f148f1b41efa8b2e971a92568f59248227ca
parent cbb6e9737495f701577b95d7a1fdf8a6fed26048
Author: Ed van Bruggen <edvb54@gmail.com>
Date: Tue, 26 Jul 2016 12:21:40 -0700
Config.h: Update dwm config.h file
Diffstat:
1 file changed, 16 insertions(+), 9 deletions(-)
diff --git a/config.h/dwm.config.h b/config.h/dwm.config.h
@@ -2,8 +2,7 @@
/* appearance */
static const char *fonts[] = {
- "siji:pixelsize=12",
- "FantasqueSansMono:pixelsize=18"
+ "FantasqueSansMono-Regular:pixelsize=18"
};
static const char dmenufont[] = "monospace:size=10";
static const char normbordercolor[] = "#002b36";
@@ -14,18 +13,23 @@ static const char selbgcolor[] = "#268bd2";
static const char selfgcolor[] = "#eee8d5";
static const char normmarkcolor[] = "#859900"; /*border color for marked client*/
static const char selmarkcolor[] = "#2aa198"; /*border color for marked client on focus*/
-static const unsigned int borderpx = 1; /* border pixel of windows */
-static const unsigned int gappx = 1; /* gap pixel between windows */
-static const unsigned int snap = 32; /* snap pixel */
-static const int showbar = 1; /* 0 means no bar */
-static const int topbar = 1; /* 0 means bottom bar */
+static const char urgbordercolor[] = "#dc322f";
+static const unsigned int borderpx = 1; /* border pixel of windows */
+static const unsigned int gappx = 6; /* gap pixel between windows */
+static const unsigned int snap = 32; /* snap pixel */
+static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
+static const unsigned int systrayspacing = 2; /* systray spacing */
+static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, 0: display systray on the last monitor*/
+static const int showsystray = 1; /* 0 means no systray */
+static const int showbar = 1; /* 0 means no bar */
+static const int topbar = 1; /* 0 means bottom bar */
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
static const Rule rules[] = {
/* class instance title tags mask isfloating monitor */
- { "bar", NULL, "bar", 0, 1, -1 },
+ { NULL, NULL, "bar", 0, 1, -1 },
};
/* layout(s) */
@@ -74,6 +78,8 @@ static const char *calcmd[] = { "gsimplecal", NULL };
#include "push.c"
#include "shiftview.c"
+#include "switchcol.c"
+#include "zoomswap.c"
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_z, spawn, {.v = dmenucmd } },
@@ -94,7 +100,8 @@ static Key keys[] = {
{ MODKEY|ShiftMask, XK_k, setcfact, {.f = -0.25} },
{ MODKEY|ShiftMask, XK_o, setcfact, {.f = 0.00} },
- { MODKEY, XK_Return, zoom, {0} },
+ { MODKEY, XK_Return, switchcol, {0} },
+ { MODKEY|ShiftMask, XK_Return, zoomswap, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY|ShiftMask, XK_x, killclient, {0} },