summaryrefslogtreecommitdiffstats
path: root/sample_configs
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-01-01 18:09:28 -0500
committerGitHub <noreply@github.com>2021-01-01 18:09:28 -0500
commit90be9730a62e2a935ccf01cdd6e320c65624722a (patch)
treeb22a66210a2af97f0ced92dc27d89a6ad2137f63 /sample_configs
parentd8d72d060d4bd4473bfe769673a2227bda948c97 (diff)
feature: Add network interface filtering (#381)
Adds a new option in the config file to filter out network interfaces. Also add the option to filter by whole words. Interface follows that of the existing ones: ```toml [net_filter] is_list_ignored = false list = ["virbr0.*"] regex = true case_sensitive = false whole_word = false ```
Diffstat (limited to 'sample_configs')
-rw-r--r--sample_configs/demo_config.toml16
1 files changed, 0 insertions, 16 deletions
diff --git a/sample_configs/demo_config.toml b/sample_configs/demo_config.toml
index f7fcb6b0..e6c5cf71 100644
--- a/sample_configs/demo_config.toml
+++ b/sample_configs/demo_config.toml
@@ -13,19 +13,3 @@ whole_word = false
regex = true
default_widget_type = "cpu"
default_widget_count = 1
-
-[colors]
-# Based on gruvbox: https://github.com/morhetz/gruvbox
-table_header_color="#458588"
-widget_title_color="#cc241d"
-cpu_core_colors=["#cc241d", "#98971a", "#d79921", "#458588", "#b16286", "#689d6a", "#fb4934", "#b8bb26", "#fabd2f", "#83a598"]
-ram_color="#fb4934"
-swap_color="#fabd2f"
-rx_color="#458588"
-tx_color="#689d6a"
-border_color="#ebdbb2"
-highlighted_border_color="#fe8019"
-text_color="#ebdbb2"
-graph_color="#ebdbb2"
-selected_text_color="#282828"
-selected_bg_color="#458588"