summaryrefslogtreecommitdiffstats
path: root/options-table.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-01-20 19:51:28 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-01-20 19:51:28 +0000
commit8cf19ab770e03f0dccc4731852a23d670b3ebad2 (patch)
treedb08e9683f7ad47d4363d3c69a0d60a8a0e03ad6 /options-table.c
parent199d148740877c5cf066fc26f72d4f4c21d68373 (diff)
Add some trivial additional status line attributes from jwcxz at users
dot sourceforge dot net.
Diffstat (limited to 'options-table.c')
-rw-r--r--options-table.c36
1 files changed, 33 insertions, 3 deletions
diff --git a/options-table.c b/options-table.c
index 20f5ae01..8bc61149 100644
--- a/options-table.c
+++ b/options-table.c
@@ -570,17 +570,47 @@ const struct options_table_entry window_options_table[] = {
.default_num = 0 /* overridden in main() */
},
- { .name = "window-status-alert-attr",
+ { .name = "window-status-bell-attr",
.type = OPTIONS_TABLE_ATTRIBUTES,
.default_num = GRID_ATTR_REVERSE
},
- { .name = "window-status-alert-bg",
+ { .name = "window-status-bell-bg",
.type = OPTIONS_TABLE_COLOUR,
.default_num = 8
},
- { .name = "window-status-alert-fg",
+ { .name = "window-status-bell-fg",
+ .type = OPTIONS_TABLE_COLOUR,
+ .default_num = 8
+ },
+
+ { .name = "window-status-content-attr",
+ .type = OPTIONS_TABLE_ATTRIBUTES,
+ .default_num = GRID_ATTR_REVERSE
+ },
+
+ { .name = "window-status-content-bg",
+ .type = OPTIONS_TABLE_COLOUR,
+ .default_num = 8
+ },
+
+ { .name = "window-status-content-fg",
+ .type = OPTIONS_TABLE_COLOUR,
+ .default_num = 8
+ },
+
+ { .name = "window-status-activity-attr",
+ .type = OPTIONS_TABLE_ATTRIBUTES,
+ .default_num = GRID_ATTR_REVERSE
+ },
+
+ { .name = "window-status-activity-bg",
+ .type = OPTIONS_TABLE_COLOUR,
+ .default_num = 8
+ },
+
+ { .name = "window-status-activity-fg",
.type = OPTIONS_TABLE_COLOUR,
.default_num = 8
},