summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorMC <mc@hack.org>2010-06-24 08:57:50 +0200
committerMC <mc@hack.org>2010-06-24 08:57:50 +0200
commite81f0c2864a7154abd4b159223959df8fae472f8 (patch)
tree0db5a4c193a1252c837805be0616cb8fb2be376a /config.h
parent3731e1ff13649549adfd336641813d74f44662ca (diff)
downloadmcwm-e81f0c2864a7154abd4b159223959df8fae472f8.zip
Added real colour handling and -f and -u options for setting them.
Diffstat (limited to 'config.h')
-rw-r--r--config.h18
1 files changed, 7 insertions, 11 deletions
diff --git a/config.h b/config.h
index caab63b..26f3459 100644
--- a/config.h
+++ b/config.h
@@ -27,23 +27,19 @@
* to be in $PATH.
*
* Change to "xterm" if you're feeling conservative.
+ *
+ * Can be set from command line with "-t program".
*/
#define TERMINAL "urxvt"
-/* Colour on border for focused windows. */
-
/*
- * FIXME: We blatantly ignore displays that doesn't handle direct
- * colour values. Sorry.
+ * Default colour on border for focused windows. Can be set from
+ * command line with "-f color".
*/
+#define FOCUSCOL "chocolate1"
-/* very light gray. */
-/* #define FOCUSCOL 0xe5e5e5 */
-/* amber */
-#define FOCUSCOL 0xff7f24
-
-/* Ditto for unfocused. */
-#define UNFOCUSCOL 0x666666
+/* Ditto for unfocused. Use "-u color". */
+#define UNFOCUSCOL "grey40"
/* Width of border window, in pixels. */
#define BORDERWIDTH 1