diff options
Diffstat (limited to 'src/conf.h')
-rw-r--r-- | src/conf.h | 28 |
1 files changed, 20 insertions, 8 deletions
@@ -28,20 +28,32 @@ #define KEY_PREFIX 't' #define MODIFIER_PREFIX ControlMask -//#define HIDE_MOUSE /* Pressing a key sends the mouse to the bottom right corner */ +/* Pressing a key sends the mouse to the bottom right corner. This + doesn't work ver well yet. */ +//#define HIDE_MOUSE + +/* Quit ratpoison when there are no more managed windows. */ +//#define AUTO_CLOSE #define BAR_FG_COLOR "black" #define BAR_BG_COLOR "white" #define FONT_NAME "9x15bold" -#define BAR_Y_PADDING 0 /* The amount of padding on the top - and bottom of the message bar */ -#define BAR_X_PADDING 0 /* The amount of padding on the left - and right of the message bar */ -#define BAR_LOCATION 3 /* 0=bottom-left 1=top-left 2=bottom-right 3=top-right */ -#define BAR_TIMEOUT 5 /* Number of seconds before the progam bar autohides 0=don't autohide */ +/* The amount of padding on the top and bottom of the message bar. */ +#define BAR_Y_PADDING 0 + +/* The amount of padding on the left and right of the message bar. */ +#define BAR_X_PADDING 0 + +/* 0=bottom-left 1=top-left 2=bottom-right 3=top-right */ +#define BAR_LOCATION 3 + +/* Number of seconds before the progam bar autohides. Setting it to 0 + disable autohide. */ +#define BAR_TIMEOUT 5 -#define PADDING_LEFT 0 /* space not to be taken up around managed windows */ +/* space not to be taken up around managed windows */ +#define PADDING_LEFT 0 #define PADDING_TOP 0 #define PADDING_RIGHT 0 #define PADDING_BOTTOM 0 |