From 29475da925654538248a4bbb35045108b5f6c4d5 Mon Sep 17 00:00:00 2001 From: Sanel Zukan Date: Mon, 8 Dec 2014 23:00:55 +0000 Subject: [PATCH] Allow setting splash theme to 'none'. If 'none' was set, no splash theme will be used. This is another way splash screen can be disabled without adding '-n' option to evoke. --- evoke/Splash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evoke/Splash.cpp b/evoke/Splash.cpp index c072b38..12d0521 100644 --- a/evoke/Splash.cpp +++ b/evoke/Splash.cpp @@ -94,7 +94,7 @@ void Splash::show(void) { void Splash::run(void) { E_ASSERT(slist != NULL); - if(!show_splash) { + if(!show_splash || (splash_theme && (strcasecmp(splash_theme->c_str(), "none") == 0))) { while(next_client_nosplash()) ; return;