summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-04-22 17:26:50 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2020-04-22 17:26:50 -0400
commit87dba602f9657a5761d8bbbf895d8d49e96a9ffb (patch)
tree4f263fb9507690fc33adb207db9418ea2592c0a9
parent121370e9f4e6f610bc07ac83139b9289038583fc (diff)
fix: Fixes typo in config generation
-rw-r--r--sample_configs/default_config.toml6
-rw-r--r--src/constants.rs6
2 files changed, 6 insertions, 6 deletions
diff --git a/sample_configs/default_config.toml b/sample_configs/default_config.toml
index 911f2601..106d1796 100644
--- a/sample_configs/default_config.toml
+++ b/sample_configs/default_config.toml
@@ -73,7 +73,7 @@
[colors]
# Represents the colour of table headers (processes, CPU, disks, temperature).
-#table_header_color="Light Blue"
+#table_header_color="LightBlue"
# Represents the colour of the label each widget has.
#widget_title_color="Gray"
@@ -100,7 +100,7 @@
#border_color="Gray"
# Represents the colour of the border of selected widgets.
-#highlighted_border_color="Light Blue"
+#highlighted_border_color="LightBlue"
# Represents the colour of most text.
#text_color="Gray"
@@ -109,7 +109,7 @@
#selected_text_color="Black"
# Represents the background colour of text that is selected.
-#selected_bg_color="Light Blue"
+#selected_bg_color="LightBlue"
# Represents the colour of the lines and text of the graph.
#graph_color="Gray"
diff --git a/src/constants.rs b/src/constants.rs
index 7c019c22..a94dcc78 100644
--- a/src/constants.rs
+++ b/src/constants.rs
@@ -164,7 +164,7 @@ pub const DEFAULT_CONFIG_CONTENT: &str = r##"
[colors]
# Represents the colour of table headers (processes, CPU, disks, temperature).
-#table_header_color="Light Blue"
+#table_header_color="LightBlue"
# Represents the colour of the label each widget has.
#widget_title_color="Gray"
@@ -191,7 +191,7 @@ pub const DEFAULT_CONFIG_CONTENT: &str = r##"
#border_color="Gray"
# Represents the colour of the border of selected widgets.
-#highlighted_border_color="Light Blue"
+#highlighted_border_color="LightBlue"
# Represents the colour of most text.
#text_color="Gray"
@@ -200,7 +200,7 @@ pub const DEFAULT_CONFIG_CONTENT: &str = r##"
#selected_text_color="Black"
# Represents the background colour of text that is selected.
-#selected_bg_color="Light Blue"
+#selected_bg_color="LightBlue"
# Represents the colour of the lines and text of the graph.
#graph_color="Gray"