Add support for kitty terminal

This commit is contained in:
Heiko Carrasco 2020-03-05 16:52:17 +01:00
parent 7a37d72bf5
commit 1b8ad38b33
No known key found for this signature in database
GPG Key ID: 06395033B42F8E01

View File

@ -495,6 +495,8 @@ int32_t is_current_window_special() {
return 1;
}else if (strstr(class_buffer, "Tilix") != NULL) { // Tilix terminal
return 1;
}else if (strstr(class_buffer, "kitty") != NULL) { // kitty terminal
return 1;
}
}