summaryrefslogtreecommitdiff
path: root/src/data.h
diff options
context:
space:
mode:
authorKipling Inscore <k@bijna.net>2008-08-03 11:40:42 -0700
committerShawn <sabetts@juicebox.(none)>2008-10-10 13:07:47 -0700
commit497fb323835bbb3cceb39874e7555b565863c7e8 (patch)
tree5d2e5495b879cd1e4dfbbbd0b8913685adf86d55 /src/data.h
parentb47008536843fe9dfa5790581228f42d5c83ee80 (diff)
downloadratpoison-497fb323835bbb3cceb39874e7555b565863c7e8.zip
allow window border color to be set seperately for focused and unfocused windows
Diffstat (limited to 'src/data.h')
-rw-r--r--src/data.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/data.h b/src/data.h
index 1d5a1a8..cddfa1b 100644
--- a/src/data.h
+++ b/src/data.h
@@ -155,7 +155,7 @@ struct rp_screen
int xine_screen_num; /* Our screen number for the Xinerama extension */
Colormap def_cmap;
Cursor rat;
- unsigned long fg_color, bg_color; /* The pixel color. */
+ unsigned long fg_color, bg_color, fw_color, bw_color; /* The pixel color. */
/* Here to abstract over the Xinerama vs X screens difference */
int left, top, width, height;
@@ -235,6 +235,8 @@ struct rp_defaults
char *fgcolor_string;
char *bgcolor_string;
+ char *fwcolor_string;
+ char *bwcolor_string;
int wait_for_key_cursor;