freebsd-src/contrib/dialog/samples/whiptail.rc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

143 lines
2.8 KiB
Plaintext
Raw Normal View History

2013-06-17 10:00:48 +00:00
# $Id: whiptail.rc,v 1.6 2012/12/01 01:15:04 tom Exp $
2011-04-17 17:00:55 +00:00
# vile:confmode
2011-01-13 02:21:23 +00:00
# Run-time configuration file for dialog, matches whiptail's color scheme.
2011-04-17 17:00:55 +00:00
#
# Types of values:
#
# Number - <number>
# String - "string"
# Boolean - <ON|OFF>
# Attribute - (foreground,background,highlight?)
2011-01-13 02:21:23 +00:00
# Set aspect-ration.
aspect = 0
# Set separator (for multiple widgets output).
separate_widget = ""
# Set tab-length (for textbox tab-conversion).
tab_len = 0
# Make tab-traversal for checklist, etc., include the list.
visit_items = ON
# Shadow dialog boxes? This also turns on color.
use_shadow = ON
# Turn color support ON or OFF
use_colors = ON
# Screen color
screen_color = (YELLOW,BLUE,ON)
# Shadow color
shadow_color = (BLACK,BLACK,ON)
# Dialog box color
dialog_color = (BLACK,WHITE,OFF)
# Dialog box title color
title_color = (RED,WHITE,ON)
# Dialog box border color
border_color = (WHITE,WHITE,ON)
# Active button color
button_active_color = (WHITE,RED,ON)
# Inactive button color
2012-10-21 18:18:09 +00:00
button_inactive_color = dialog_color
2011-01-13 02:21:23 +00:00
# Active button key color
2012-10-21 18:18:09 +00:00
button_key_active_color = button_active_color
2011-01-13 02:21:23 +00:00
# Inactive button key color
2012-10-21 18:18:09 +00:00
button_key_inactive_color = dialog_color
2011-01-13 02:21:23 +00:00
# Active button label color
2012-10-21 18:18:09 +00:00
button_label_active_color = button_active_color
2011-01-13 02:21:23 +00:00
# Inactive button label color
button_label_inactive_color = (BLACK,WHITE,ON)
# Input box color
2012-10-21 18:18:09 +00:00
inputbox_color = dialog_color
2011-01-13 02:21:23 +00:00
# Input box border color
2012-10-21 18:18:09 +00:00
inputbox_border_color = dialog_color
2011-01-13 02:21:23 +00:00
# Search box color
2012-10-21 18:18:09 +00:00
searchbox_color = dialog_color
2011-01-13 02:21:23 +00:00
# Search box title color
2012-10-21 18:18:09 +00:00
searchbox_title_color = title_color
2011-01-13 02:21:23 +00:00
# Search box border color
2012-10-21 18:18:09 +00:00
searchbox_border_color = border_color
2011-01-13 02:21:23 +00:00
# File position indicator color
2012-10-21 18:18:09 +00:00
position_indicator_color = title_color
2011-01-13 02:21:23 +00:00
# Menu box color
menubox_color = (YELLOW,BLUE,OFF)
# Menu box border color
2012-10-21 18:18:09 +00:00
menubox_border_color = screen_color
2011-01-13 02:21:23 +00:00
# Item color
2012-10-21 18:18:09 +00:00
item_color = menubox_color
2011-01-13 02:21:23 +00:00
# Selected item color
2012-10-21 18:18:09 +00:00
item_selected_color = screen_color
2011-01-13 02:21:23 +00:00
# Tag color
2012-10-21 18:18:09 +00:00
tag_color = screen_color
2011-01-13 02:21:23 +00:00
# Selected tag color
2012-10-21 18:18:09 +00:00
tag_selected_color = screen_color
2011-01-13 02:21:23 +00:00
# Tag key color
2012-10-21 18:18:09 +00:00
tag_key_color = menubox_color
2011-01-13 02:21:23 +00:00
# Selected tag key color
tag_key_selected_color = (WHITE,BLUE,ON)
# Check box color
2012-10-21 18:18:09 +00:00
check_color = menubox_color
2011-01-13 02:21:23 +00:00
# Selected check box color
2012-10-21 18:18:09 +00:00
check_selected_color = screen_color
2011-01-13 02:21:23 +00:00
# Up arrow color
2012-10-21 18:18:09 +00:00
uarrow_color = screen_color
2011-01-13 02:21:23 +00:00
# Down arrow color
2012-10-21 18:18:09 +00:00
darrow_color = screen_color
2011-01-13 02:21:23 +00:00
# Item help-text color
itemhelp_color = (WHITE,BLACK,OFF)
# Active form text color
2012-10-21 18:18:09 +00:00
form_active_text_color = tag_key_selected_color
2011-01-13 02:21:23 +00:00
# Form text color
form_text_color = (WHITE,CYAN,ON)
2011-04-17 17:00:55 +00:00
# Readonly form item color
form_item_readonly_color = (CYAN,WHITE,ON)
# Dialog box gauge color
gauge_color = (BLUE,WHITE,ON)
2012-10-21 18:18:09 +00:00
# Dialog box border2 color
border2_color = dialog_color
# Input box border2 color
inputbox_border2_color = dialog_color
# Search box border2 color
searchbox_border2_color = dialog_color
# Menu box border2 color
2013-06-17 10:00:48 +00:00
menubox_border2_color = screen_color