From dadfb8628e20ad326b77e81dbe518c9e905487d1 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Tue, 21 Jan 2020 21:25:42 +0100 Subject: [PATCH] Add support for Yakuake terminal. Fix #153 --- native/liblinuxbridge/bridge.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/native/liblinuxbridge/bridge.cpp b/native/liblinuxbridge/bridge.cpp index a34661a..eeb5922 100644 --- a/native/liblinuxbridge/bridge.cpp +++ b/native/liblinuxbridge/bridge.cpp @@ -479,6 +479,8 @@ int32_t is_current_window_special() { return 1; }else if (strstr(class_buffer, "Emacs") != NULL) { // Emacs return 3; + }else if (strstr(class_buffer, "yakuake") != NULL) { // Yakuake terminal + return 1; } }