Skip to content

Instantly share code, notes, and snippets.

@DrSpeedy
Last active April 14, 2018 00:56
Show Gist options
  • Save DrSpeedy/b3a05f3beb402fa38c4ef3336a2fa58f to your computer and use it in GitHub Desktop.
Save DrSpeedy/b3a05f3beb402fa38c4ef3336a2fa58f to your computer and use it in GitHub Desktop.
Run-time configuration file for bash dialog
#
# Run-time configuration file for bash dialog
# Path: /etc/dialogrc
#
# Types of values:
#
# Number - <number>
# String - "string"
# Boolean - <ON|OFF>
# Attribute - (foreground,background,highlight?)
# 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 = OFF
# Shadow dialog boxes? This also turns on color.
use_shadow = ON
# Turn color support ON or OFF
use_colors = ON
# Screen color
screen_color = (GREEN,BLACK,ON)
# Shadow color
shadow_color = (BLACK,BLACK,OFF)
# Dialog box color
dialog_color = (YELLOW,BLACK,OFF)
# Dialog box title color
title_color = (GREEN,BLACK,OFF)
# Dialog box border color
border_color = (GREEN,BLACK,ON)
border2_color = border_color
# Active button color
button_active_color = (GREEN,BLACK,ON)
# Inactive button color
button_inactive_color = (RED,BLACK,OFF)
# Active button key color
button_key_active_color = (BLACK,YELLOW,OFF)
# Inactive button key color
button_key_inactive_color = (RED,BLACK,OFF)
# Active button label color
button_label_active_color = (YELLOW,BLACK,OFF)
# Inactive button label color
button_label_inactive_color = (RED,BLACK,ON)
# Input box color
inputbox_color = (GREEN,BLACK,OFF)
# Input box border color
inputbox_border_color = (GREEN,BLACK,OFF)
# Search box color
searchbox_color = (GREEN,BLACK,OFF)
# Search box title color
searchbox_title_color = (BLUE,WHITE,ON)
# Search box border color
searchbox_border_color = (WHITE,WHITE,OFF)
# File position indicator color
position_indicator_color = (GREEN,BLACK,ON)
# Menu box color
menubox_color = (BLACK,BLACK,OFF)
# Menu box border color
menubox_border_color = (YELLOW,BLACK,ON)
menubox_border2_color = menubox_border_color
# Item color
item_color = (YELLOW,BLACK,OFF)
# Selected item color
item_selected_color = (GREEN,BLACK,ON)
# Tag color
tag_color = (YELLOW,BLACK,ON)
# Selected tag color
tag_selected_color = (GREEN,BLACK,ON)
# Tag key color
tag_key_color = (RED,BLACK,OFF)
# Selected tag key color
tag_key_selected_color = (BLACK,GREEN,OFF)
# Check box color
check_color = (YELLOW,BLACK,ON)
# Selected check box color
check_selected_color = (BLACK,YELLOW,OFF)
# Up arrow color
uarrow_color = (GREEN,BLACK,ON)
# Down arrow color
darrow_color = (GREEN,BLACK,ON)
# Item help-text color
itemhelp_color = (WHITE,BLACK,OFF)
# Active form text color
form_active_text_color = (WHITE,BLUE,ON)
# Form text color
form_text_color = (WHITE,CYAN,ON)
# Dialog box gauge color
gauge_color = (YELLOW,BLACK,OFF)
# Readonly form item color
form_item_readonly_color = (CYAN,BLACK,ON)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment