Add support for Yakuake terminal. Fix #153

This commit is contained in:
Federico Terzi 2020-01-21 21:25:42 +01:00
parent 6b6cac059e
commit dadfb8628e

View File

@ -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;
}
}