summaryrefslogtreecommitdiffstats
path: root/config.h
diff options
context:
space:
mode:
authorGravatar Anselm R Garbe 2008-06-14 10:55:13 +0100
committerGravatar Anselm R Garbe 2008-06-14 10:55:13 +0100
commitd2305e4b136b3bdfccf7de897a9f14583a1ca35a (patch)
tree17750c9adc4530ebb0d1f95d0b5f5f7180e64c25 /config.h
parentusing xidx (diff)
reusing config.h's color values, note we have to use const char *, instead of const char [] here, because the pointer might change
Diffstat (limited to '')
-rw-r--r--config.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/config.h b/config.h
index 43d3a53..5af4304 100644
--- a/config.h
+++ b/config.h
@@ -1,14 +1,14 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-#define FONT "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*"
-#define NORMBGCOLOR "#cccccc"
-#define NORMFGCOLOR "#000000"
-#define SELBGCOLOR "#0066ff"
-#define SELFGCOLOR "#ffffff"
+static const char *font = "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*";
+static const char *normbgcolor = "#cccccc";
+static const char *normfgcolor = "#000000";
+static const char *selbgcolor = "#0066ff";
+static const char *selfgcolor = "#ffffff";
-static uint spaceitem = 30; /* px between menu items */
+static uint spaceitem = 30; /* px between menu items */
#ifdef XINERAMA
-static uint xidx = 0; /* Xinerama screen index to use */
+static uint xidx = 0; /* Xinerama screen index to use */
#endif
span>/+4 2011-11-14fix C-n / C-p directions (thanks bastien)Gravatar Connor Lane Smith 1-2/+2 2011-11-14new default colour schemeGravatar Connor Lane Smith 1-4/+4 2011-10-26makefile: *.o depend on draw.hGravatar Connor Lane Smith 1-1/+1 2011-10-26add paste from clipboardGravatar Connor Lane Smith 1-2/+4 2011-10-26add lots of commentsGravatar Connor Lane Smith 1-18/+33 2011-10-26input focus: calculate areas of intersectionGravatar Connor Lane Smith 1-12/+22 2011-10-17simplify dmenu_runGravatar Connor Lane Smith 1-1/+1 2011-10-17use ~/.dmenu_cache if no xdg cacheGravatar Connor Lane Smith 1-1/+4 2011-10-17lsx: detect read errorsGravatar Connor Lane Smith 1-7/+9 2011-10-17xim: check for corner casesGravatar Connor Lane Smith 1-4/+6 2011-10-16fix extra warningGravatar Connor Lane Smith 1-1/+1 2011-10-16lsx: return failure on errorGravatar Connor Lane Smith 1-2/+5 2011-10-16add xim supportGravatar Troels Henriksen 1-3/+15 2011-10-13limit lines to inputGravatar Connor Lane Smith 1-0/+1 2011-10-04input focus: fix for reparenting wmsGravatar Connor Lane Smith 1-1/+1 2011-09-30fix monitor select when no focusGravatar Connor Lane Smith 1-1/+1 2011-09-20tweak matchGravatar Connor Lane Smith 1-2/+2 2011-09-20update manpageGravatar Connor Lane Smith 1-9/+6 2011-09-19detect active monitor using input focusGravatar Connor Lane Smith 1-7/+12 2011-09-19add token matchingGravatar Connor Lane Smith 1-23/+34 2011-09-19change version to 'hg'Gravatar Connor Lane Smith 1-1/+1 2011-07-24dmenu_run: sh -cGravatar Connor Lane Smith 1-1/+1 2011-07-22fix loadfontGravatar Connor Lane Smith 1-12/+13 2011-07-19Added tag 4.4 for changeset 2b105eaae831Gravatar Connor Lane Smith 1-0/+1 2011-07-19add lsx.1 to distGravatar Connor Lane Smith 1-1/+1 2011-07-17tweaksGravatar Connor Lane Smith 2-2/+2 2011-07-14efficiency tweaksGravatar Connor Lane Smith 2-60/+44 2011-07-14fix extra warningGravatar Connor Lane Smith 1-1/+1 2011-07-06simpler vlineGravatar Connor Lane Smith 1-4/+2 2011-07-04rebind ^N ^PGravatar Connor Lane Smith 2-3/+3 2011-06-25include limits.hGravatar Connor Lane Smith 1-0/+1 2011-06-23make clean lsxGravatar Connor Lane Smith 1-1/+1 2011-06-23lsx: check snprintfGravatar Connor Lane Smith 1-4/+3 2011-06-18update draw.cGravatar Connor Lane Smith 2-14/+14 2011-06-18simpler lsxGravatar Connor Lane Smith 3-11/+6 2011-06-13new dmenu_runGravatar Connor Lane Smith 5-26/+15