From 8608a4663360e9e737bd629b827541c32f7f1328 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Sat, 18 Feb 2017 12:12:51 +0100 Subject: [PATCH] Fix missing capital. (sorry not awake yet) --- source/x11-helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/x11-helper.c b/source/x11-helper.c index 6f044fb0..f372e0ef 100644 --- a/source/x11-helper.c +++ b/source/x11-helper.c @@ -941,7 +941,7 @@ void x11_helper_discover_window_manager ( void ) current_window_manager = WM_I3; } else if ( g_strcmp0 ( wtitle.strings, "awesome" ) == 0 ){ current_window_manager = WM_AWESOME; - } else if ( g_strcmp0 ( wtitle.strings, "openbox" ) == 0 ){ + } else if ( g_strcmp0 ( wtitle.strings, "Openbox" ) == 0 ){ current_window_manager = WM_OPENBOX; } }