summaryrefslogtreecommitdiffstats
path: root/sample_configs
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-02-20 23:25:28 -0500
committerClementTsang <cjhtsang@uwaterloo.ca>2020-02-20 23:25:28 -0500
commitaa44a1dc31663371f6aa7a762c491fcad2f698c5 (patch)
tree79d60d2095f5a55bb94e86a70d2e1d7bc0d0016e /sample_configs
parent0697d9dd565f1887ee3922ac0b3bc6b61ff8a3bb (diff)
Moved some files around.
Diffstat (limited to 'sample_configs')
-rw-r--r--sample_configs/bottom.toml83
-rw-r--r--sample_configs/demo_config.toml42
2 files changed, 125 insertions, 0 deletions
diff --git a/sample_configs/bottom.toml b/sample_configs/bottom.toml
new file mode 100644
index 00000000..0d4df0a8
--- /dev/null
+++ b/sample_configs/bottom.toml
@@ -0,0 +1,83 @@
+# This is a default config file for bottom. All of the settings are commented
+# out by default; if you wish to change them uncomment and modify as you see
+# fit.
+
+# This group of options represents a command-line flag/option. Flags explicitly
+# added when running (ie: btm -a) will override this config file if an option
+# is also set here.
+#[flags]
+
+#avg_cpu = true
+#dot_marker = false
+#rate = 1000
+#left_legend = false
+#current_usage = false
+#group_processes = false
+#case_sensitive = false
+#whole_word = true
+#regex = true
+#show_disabled_data = true
+
+# Defaults to Celsius. Temperature is one of:
+#temperature_type = "k"
+#temperature_type = "f"
+#temperature_type = "c"
+#temperature_type = "kelvin"
+#temperature_type = "fahrenheit"
+#temperature_type = "celsius"
+
+# Defaults to processes. Default widget is one of:
+#default_widget = "cpu_default"
+#default_widget = "memory_default"
+#default_widget = "disk_default"
+#default_widget = "temperature_default"
+#default_widget = "network_default"
+#default_widget = "process_default"
+
+
+# These are all the components that support custom theming. Currently, it only
+# supports taking in a string representing a hex colour. Note that colour support
+# will, at the end of the day, depend on terminal support - for example, the
+# macOS default Terminal does NOT like custom colours and it will glitch out.
+#
+# The default options here are based on gruvbox: https://github.com/morhetz/gruvbox
+#[colors]
+
+# Represents the colour of table headers (processes, CPU, disks, temperature).
+#table_header_color="#458588"
+
+# Represents the colour of the label each widget has.
+#widget_title_color="#cc241d"
+
+# Represents the colour the core will use in the CPU legend and graph.
+#cpu_core_colors=["#cc241d", "#98971a"]
+
+# Represents the colour RAM will use in the memory legend and graph.
+#ram_color="#fb4934"
+
+# Represents the colour SWAP will use in the memory legend and graph.
+#swap_color="#fabd2f"
+
+# Represents the colour rx will use in the network legend and graph.
+#rx_color="#458588"
+
+# Represents the colour tx will use in the network legend and graph.
+#tx_color="#689d6a"
+
+# Represents the colour of the border of unselected widgets.
+#border_color="#ebdbb2"
+
+# Represents the colour of the border of selected widgets.
+#highlighted_border_color="#fe8019"
+
+# Represents the colour of the border of most text that is otherwise not covered.
+#text_color="#ebdbb2"
+
+# Represents the colour of text that is selected.
+#selected_text_color="#282828"
+
+# Represents the background colour of text that is selected.
+#selected_bg_color="#458588"
+
+# Represents the colour of the lines and text of the graph.
+#graph_color="#ebdbb2"
diff --git a/sample_configs/demo_config.toml b/sample_configs/demo_config.toml
new file mode 100644
index 00000000..36b63728
--- /dev/null
+++ b/sample_configs/demo_config.toml
@@ -0,0 +1,42 @@
+[flags]
+avg_cpu = true
+dot_marker = false
+
+# Temperature is one of:
+#temperature_type = "k"
+#temperature_type = "f"
+temperature_type = "c"
+
+rate = 1000
+left_legend = false
+current_usage = false
+group_processes = false
+case_sensitive = false
+whole_word = true
+regex = true
+
+# Default widget is one of:
+default_widget = "cpu_default"
+#default_widget = "memory_default"
+#default_widget = "disk_default"
+#default_widget = "temperature_default"
+#default_widget = "network_default"
+#default_widget = "process_default"
+
+show_disabled_data = true
+
+[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"