diff options
author | MC <mc@hack.org> | 2010-06-22 10:53:38 +0200 |
---|---|---|
committer | MC <mc@hack.org> | 2010-06-22 10:53:38 +0200 |
commit | 2ddd0a19a029715a9c05a46cf962e24d1dda967a (patch) | |
tree | 79ea542d6ec1161fc4612576b73c69ee41097305 | |
parent | cd3af1be53c1dfbab5d4d293b84ce0906a5607b6 (diff) | |
download | mcwm-2ddd0a19a029715a9c05a46cf962e24d1dda967a.zip |
Added comments.
Don't use full path to urxvt.
Changed focus colour.
-rw-r--r-- | config.h | 27 |
1 files changed, 19 insertions, 8 deletions
@@ -1,6 +1,9 @@ /* User configurable stuff. */ -/* Move this many pixels when moving or resizing with keyboard. */ +/* + * Move this many pixels when moving or resizing with keyboard unless + * the window has hints saying otherwise. + */ #define MOVE_STEP 32 /* @@ -19,17 +22,25 @@ */ #define MOUSEMODKEY XCB_MOD_MASK_1 -/* Start this program when pressing MODKEY + USERKEY_TERMINAL. */ -#define TERMINAL "/usr/local/bin/urxvt" - -/* for VNC when running another wm simultaneously: XCB_BUTTON_MASK_ANY */ +/* + * Start this program when pressing MODKEY + USERKEY_TERMINAL. Needs + * to be in $PATH. + * + * Change to "xterm" if you're feeling conservative. + */ +#define TERMINAL "urxvt" /* Colour on border for focused windows. */ -/* FIXME: We blatantly ignore displays that doesn't handle direct pixel values. */ +/* + * FIXME: We blatantly ignore displays that doesn't handle direct + * colour values. Sorry. + */ -#define FOCUSCOL 0xe5e5e5 -/* amber #define FOCUSCOL 0xff7f24 */ +/* very light gray. */ +/* #define FOCUSCOL 0xe5e5e5 */ +/* amber */ +#define FOCUSCOL 0xff7f24 /* Ditto for unfocused. */ #define UNFOCUSCOL 0x666666 |