From 39f231b5ffd1fde3a9818dc0a62e2f4173a639e6 Mon Sep 17 00:00:00 2001 From: Qball Cow Date: Sun, 29 Dec 2024 10:34:50 +0100 Subject: [PATCH] Resolve -config argument identical to a -theme argument. fixes: #2040 --- source/rofi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/rofi.c b/source/rofi.c index fb723300..63cbe768 100644 --- a/source/rofi.c +++ b/source/rofi.c @@ -1066,7 +1066,7 @@ int main(int argc, char *argv[]) { g_free(etc); } - if (config_path && g_file_test(config_path, G_FILE_TEST_IS_REGULAR)) { + if (config_path) { if (rofi_theme_parse_file(config_path)) { rofi_theme_free(rofi_theme); rofi_theme = NULL;