|
@@ -1,22 +1,22 @@
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
|
/* appearance */
|
|
|
-static const unsigned int borderpx = 5; /* border pixel of windows */
|
|
|
+static const unsigned int borderpx = 3; /* border pixel of windows */
|
|
|
static const unsigned int snap = 32; /* snap pixel */
|
|
|
-static const unsigned int gappih = 20; /* horiz inner gap between windows */
|
|
|
-static const unsigned int gappiv = 20; /* vert inner gap between windows */
|
|
|
-static const unsigned int gappoh = 20; /* horiz outer gap between windows and screen edge */
|
|
|
-static const unsigned int gappov = 20; /* vert outer gap between windows and screen edge */
|
|
|
+static const unsigned int gappih = 10; /* horiz inner gap between windows */
|
|
|
+static const unsigned int gappiv = 10; /* vert inner gap between windows */
|
|
|
+static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */
|
|
|
+static const unsigned int gappov = 10; /* vert outer gap between windows and screen edge */
|
|
|
static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */
|
|
|
static const int showbar = 1; /* 0 means no bar */
|
|
|
-static const int topbar = 1; /* 0 means bottom bar */
|
|
|
+static const int topbar = 0; /* 0 means bottom bar */
|
|
|
static const char *fonts[] = { "Source Code Pro Medium:size=10", "JoyPixels:pixelsize=10:antialias=true:autohint=true" };
|
|
|
static const char dmenufont[] = "monospace:size=14";
|
|
|
-static const char col_gray1[] = "#222222";
|
|
|
+static const char col_gray1[] = "#22292f";
|
|
|
static const char col_gray2[] = "#444444";
|
|
|
static const char col_gray3[] = "#bbbbbb";
|
|
|
-static const char col_gray4[] = "#eeeeee";
|
|
|
-static const char col_cyan[] = "#e10062";
|
|
|
+static const char col_gray4[] = "#d0d7e2";
|
|
|
+static const char col_cyan[] = "#537c36";
|
|
|
static const char *colors[][3] = {
|
|
|
/* fg bg border */
|
|
|
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
|
@@ -24,7 +24,7 @@ static const char *colors[][3] = {
|
|
|
};
|
|
|
|
|
|
/* tagging */
|
|
|
-static const char *tags[] = { ">_", "🦊", "3", "4", "5", "6", "7", "📭", "🗑" };
|
|
|
+static const char *tags[] = { ">_", "🦊", "3", "4", "5", "6", "7", "8", "🗑" };
|
|
|
|
|
|
static const Rule rules[] = {
|
|
|
/* xprop(1):
|