provisioning tool for building opinionated architecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
5.2 KiB

7 months ago
  1. [flags]
  2. # Whether to hide the average cpu entry.
  3. #hide_avg_cpu = false
  4. # Whether to use dot markers rather than braille.
  5. #dot_marker = false
  6. # The update rate of the application.
  7. #rate = 1000
  8. # Whether to put the CPU legend to the left.
  9. #left_legend = false
  10. # Whether to set CPU% on a process to be based on the total CPU or just current usage.
  11. #current_usage = false
  12. # Whether to group processes with the same name together by default.
  13. #group_processes = false
  14. # Whether to make process searching case sensitive by default.
  15. #case_sensitive = false
  16. # Whether to make process searching look for matching the entire word by default.
  17. #whole_word = false
  18. # Whether to make process searching use regex by default.
  19. #regex = false
  20. # Defaults to Celsius. Temperature is one of:
  21. #temperature_type = "k"
  22. #temperature_type = "f"
  23. #temperature_type = "c"
  24. #temperature_type = "kelvin"
  25. #temperature_type = "fahrenheit"
  26. #temperature_type = "celsius"
  27. # The default time interval (in milliseconds).
  28. #default_time_value = 60000
  29. # The time delta on each zoom in/out action (in milliseconds).
  30. #time_delta = 15000
  31. # Hides the time scale.
  32. #hide_time = false
  33. # Override layout default widget
  34. #default_widget_type = "proc"
  35. #default_widget_count = 1
  36. # Use basic mode
  37. #basic = false
  38. # Use the old network legend style
  39. #use_old_network_legend = false
  40. # Remove space in tables
  41. #hide_table_gap = false
  42. # Show the battery widgets
  43. #battery = false
  44. # Disable mouse clicks
  45. #disable_click = false
  46. # Built-in themes. Valid values are "default", "default-light", "gruvbox", "gruvbox-light", "nord", "nord-light"
  47. #color = "default"
  48. # Show memory values in the processes widget as values by default
  49. #mem_as_value = false
  50. # Show tree mode by default in the processes widget.
  51. #tree = false
  52. # Shows an indicator in table widgets tracking where in the list you are.
  53. #show_table_scroll_position = false
  54. # Show processes as their commands by default in the process widget.
  55. #process_command = false
  56. # Displays the network widget with binary prefixes.
  57. #network_use_binary_prefix = false
  58. # Displays the network widget using bytes.
  59. network_use_bytes = true
  60. # Displays the network widget with a log scale.
  61. #network_use_log = false
  62. # Hides advanced options to stop a process on Unix-like systems.
  63. #disable_advanced_kill = false
  64. # These are all the components that support custom theming. Note that colour support
  65. # will depend on terminal support.
  66. #[colors] # Uncomment if you want to use custom colors
  67. # Represents the colour of table headers (processes, CPU, disks, temperature).
  68. #table_header_color="LightBlue"
  69. # Represents the colour of the label each widget has.
  70. #widget_title_color="Gray"
  71. # Represents the average CPU color.
  72. #avg_cpu_color="Red"
  73. # Represents the colour the core will use in the CPU legend and graph.
  74. #cpu_core_colors=["LightMagenta", "LightYellow", "LightCyan", "LightGreen", "LightBlue", "LightRed", "Cyan", "Green", "Blue", "Red"]
  75. # Represents the colour RAM will use in the memory legend and graph.
  76. #ram_color="LightMagenta"
  77. # Represents the colour SWAP will use in the memory legend and graph.
  78. #swap_color="LightYellow"
  79. # Represents the colour rx will use in the network legend and graph.
  80. #rx_color="LightCyan"
  81. # Represents the colour tx will use in the network legend and graph.
  82. #tx_color="LightGreen"
  83. # Represents the colour of the border of unselected widgets.
  84. #border_color="Gray"
  85. # Represents the colour of the border of selected widgets.
  86. #highlighted_border_color="LightBlue"
  87. # Represents the colour of most text.
  88. #text_color="Gray"
  89. # Represents the colour of text that is selected.
  90. #selected_text_color="Black"
  91. # Represents the background colour of text that is selected.
  92. #selected_bg_color="LightBlue"
  93. # Represents the colour of the lines and text of the graph.
  94. #graph_color="Gray"
  95. # Represents the colours of the battery based on charge
  96. #high_battery_color="green"
  97. #medium_battery_color="yellow"
  98. #low_battery_color="red"
  99. # Layout - layouts follow a pattern like this:
  100. # [[row]] represents a row in the application.
  101. # [[row.child]] represents either a widget or a column.
  102. # [[row.child.child]] represents a widget.
  103. #
  104. # All widgets must have the type value set to one of ["cpu", "mem", "proc", "net", "temp", "disk", "empty"].
  105. # All layout components have a ratio value - if this is not set, then it defaults to 1.
  106. # The default widget layout:
  107. [[row]]
  108. ratio=30
  109. [[row.child]]
  110. type="cpu"
  111. [[row]]
  112. ratio=40
  113. [[row.child]]
  114. ratio=4
  115. type="mem"
  116. [[row.child]]
  117. ratio=3
  118. [[row.child.child]]
  119. type="disk"
  120. [[row]]
  121. ratio=30
  122. [[row.child]]
  123. type="net"
  124. [[row.child]]
  125. type="proc"
  126. default=true
  127. # Filters - you can hide specific temperature sensors, network interfaces, and disks using filters. This is admittedly
  128. # a bit hard to use as of now, and there is a planned in-app interface for managing this in the future:
  129. [disk_filter]
  130. is_list_ignored = true
  131. list = ["/dev/loop\\d+"]
  132. regex = true
  133. case_sensitive = false
  134. whole_word = false
  135. #[mount_filter]
  136. #is_list_ignored = true
  137. #list = ["/mnt/.*", "/boot"]
  138. #regex = true
  139. #case_sensitive = false
  140. #whole_word = false
  141. #[temp_filter]
  142. #is_list_ignored = true
  143. #list = ["cpu", "wifi"]
  144. #regex = false
  145. #case_sensitive = false
  146. #whole_word = false
  147. #[net_filter]
  148. #is_list_ignored = true
  149. #list = ["virbr0.*"]
  150. #regex = true
  151. #case_sensitive = false
  152. #whole_word = false