mirror of
https://github.com/lbonn/rofi
synced 2025-02-28 21:27:09 +00:00
[Config] Change separator to '#'.
This commit is contained in:
parent
8f1aa8481d
commit
2614fe4425
1 changed files with 4 additions and 5 deletions
|
@ -549,15 +549,14 @@ void config_parse_cmd_options(void) {
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
if (count > 2) {
|
if (count > 2) {
|
||||||
if (g_strcmp0(tokens[1], "theme") == 0) {
|
if (g_str_has_prefix(tokens[1], "theme")) {
|
||||||
g_strfreev(tokens);
|
g_strfreev(tokens);
|
||||||
tokens = g_strsplit(stored_argv[in], "-", 0);
|
tokens = g_strsplit(stored_argv[in], "#", 0);
|
||||||
count = g_strv_length(tokens);
|
count = g_strv_length(tokens);
|
||||||
if (count > 3) {
|
if (count > 2) {
|
||||||
GString *str = g_string_new("");
|
GString *str = g_string_new("");
|
||||||
config_parser_form_rasi_format(str, &(tokens[2]), count - 2,
|
config_parser_form_rasi_format(str, &(tokens[1]), count - 1,
|
||||||
stored_argv[in + 1], FALSE);
|
stored_argv[in + 1], FALSE);
|
||||||
g_debug("theme: \"%s\"\n", str->str);
|
|
||||||
if (rofi_theme_parse_string(str->str) == 1) {
|
if (rofi_theme_parse_string(str->str) == 1) {
|
||||||
/** Failed to parse, try again as string. */
|
/** Failed to parse, try again as string. */
|
||||||
g_strfreev(tokens);
|
g_strfreev(tokens);
|
||||||
|
|
Loading…
Add table
Reference in a new issue