Guest User

.dialogrc for Obarun

a guest
Oct 25th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.73 KB | None | 0 0
  1. ###  ------------------------------------------
  2. ###
  3. ###  Run-time configuration file for dialog
  4. ###
  5. ###  Manually created by Marian Arlt for Obarun
  6. ###
  7. ###  ------------------------------------------
  8.  
  9.  
  10. # --- VARIABLES ---#
  11.  
  12. # Set aspect-ratio
  13. aspect = 16:9
  14. # Set separator (for multiple widgets output)
  15. separate_widget = ""
  16. # Set tab-length (for textbox tab-conversion)
  17. tab_len = 0
  18. # Make tab-traversal for checklist, etc., include the list
  19. visit_items = OFF
  20. # Shadow dialog boxes? This also turns on color
  21. use_shadow = ON
  22. # Turn color support ON or OFF
  23. use_colors = ON
  24.  
  25.  
  26. # --- BASICS --- #
  27.  
  28. # Screen color
  29. screen_color = (WHITE,BLACK,OFF)
  30. # Shadow color
  31. shadow_color = (BLACK,BLACK,OFF)
  32.  
  33.  
  34. # --- BORDERS --- #
  35.  
  36. # Left and top outer border of ALL dialogs
  37. border_color = (CYAN,BLACK,OFF)
  38. # Right and bottom outer border of ALL dialogs
  39. border2_color = border_color
  40.  
  41. # Left and top inner borders of specific dialogs
  42. inputbox_border_color = screen_color
  43. searchbox_border_color = inputbox_border_color
  44. menubox_border_color = inputbox_border_color
  45. # Right and bottom inner borders of specific dialogs
  46. inputbox_border2_color = inputbox_border_color
  47. searchbox_border2_color = searchbox_border_color
  48. menubox_border2_color = menubox_border_color
  49.  
  50.  
  51. # --- BUTTONS --- #
  52.  
  53. # Angle brackets surrounding the label
  54. button_active_color = (WHITE,BLACK,ON)
  55. button_inactive_color = screen_color
  56.  
  57. # First character including the console cursor
  58. button_key_active_color = button_active_color
  59. button_key_inactive_color = button_inactive_color
  60.  
  61. # Remaining characters
  62. button_label_active_color = button_active_color
  63. button_label_inactive_color = button_inactive_color
  64.  
  65.  
  66. # --- CONTENT --- #
  67.  
  68. # --title attribute for all dialogs
  69. title_color = screen_color
  70.  
  71. # <text> attribute for all dialogs
  72. dialog_color = screen_color
  73.  
  74. # --inputbox printed user input
  75. # possibly applies to other printed user input; not tested
  76. inputbox_color = screen_color
  77.  
  78. # --gauge printed percentage and bar
  79. # bold only applies to the percentage if it is not yet reached by the bar
  80. # also applies to --rangebox
  81. # in both cases where the bar reaches the percentage the latter will aquire the background color in bold
  82. gauge_color = screen_color
  83.  
  84. # Some of the following are pulled by several dialogs in a mixed manner
  85. # --menu, --checklist, --radiolist e.g. will take all of these
  86. # --inputmenu only takes the _selected_ ones
  87. # Inactive <item>
  88. item_color = screen_color
  89. # Active <item>
  90. item_selected_color = screen_color
  91. # Inactive <tag>
  92. tag_color = screen_color
  93. # Active <tag>
  94. tag_selected_color = button_active_color
  95. # First character of inactive <tag>
  96. tag_key_color = tag_color
  97. # First character of active <tag>
  98. tag_key_selected_color = tag_selected_color
  99. # This doesn't seem to change anything anywhere
  100. menubox_color = screen_color
  101.  
  102. # These apply to --checklist and --radiolist
  103. # Inactive checkbox only
  104. check_color = screen_color
  105. # Active checkbox only
  106. check_selected_color = button_active_color
  107.  
  108. # Scrolled content percentage/quantity
  109. position_indicator_color = screen_color
  110. # Scrolled content up arrow
  111. uarrow_color = screen_color
  112. # Scrolled content down arrow
  113. darrow_color = uarrow_color
  114.  
  115. # --help text; untested
  116. itemhelp_color = screen_color
  117.  
  118. # --form <text>
  119. # possibly applies to similar dialogs; not tested
  120. form_text_color = screen_color
  121. # --form active <label> & <item>
  122. form_active_text_color = button_active_color
  123. # --form readonly
  124. form_item_readonly_color = screen_color
  125.  
  126. # I could not find ANY dialog box that would pull this in
  127. # and I tested all of them; maybe some optional untested attribute
  128. searchbox_color = screen_color
  129. searchbox_title_color = title_color
  130.  
  131. # File must end with an empty line or dialog will throw an error!
Advertisement
Add Comment
Please, Sign In to add comment