@@ -146,7 +146,7 @@ NOTE: Arguments that takes [<bool>] values, the values can be either: "true", 1,
146146 --gen-config [<path>] Generate default config file to config folder (if path, it will generate to the path)
147147 Will ask for confirmation if file exists already
148148
149- --add- color <string> Replace instances of a color with another value.
149+ --color <string> Replace instances of a color with another value.
150150 Syntax MUST be "name=value" with no space between "=", example: --color "foo=#444333".
151151 Thus replaces any instance of foo with #444333. Can be done with multiple colors separately.
152152
@@ -562,7 +562,7 @@ static STRING_IF_ANDROID_APP_ELSE(bool) parseargs(int argc, char* argv[], Config
562562 {" layout-padding-top" , required_argument, 0 , " layout-padding-top" _fnv1a16},
563563 {" loop-ms" , required_argument, 0 , " loop-ms" _fnv1a16},
564564 {" bg-image" , required_argument, 0 , " bg-image" _fnv1a16},
565- {" add- color" , required_argument, 0 , " add- color" _fnv1a16},
565+ {" color" , required_argument, 0 , " color" _fnv1a16},
566566
567567 {0 ,0 ,0 ,0 }
568568 };
@@ -655,7 +655,7 @@ static STRING_IF_ANDROID_APP_ELSE(bool) parseargs(int argc, char* argv[], Config
655655 config.overrides [" config.wrap-lines" ] = {.value_type = BOOL, .bool_value = true };
656656 break ;
657657
658- case " add- color" _fnv1a16:
658+ case " color" _fnv1a16:
659659 config.addAliasColors (optarg); break ;
660660
661661 case " gen-config" _fnv1a16:
0 commit comments