Add support for Simple terminal on Linux. Fix #112

This commit is contained in:
Federico Terzi 2019-11-08 21:42:23 +01:00
parent aaede19344
commit b978c8a593

View File

@ -454,6 +454,8 @@ int32_t is_current_window_terminal() {
return 1;
}else if (strstr(class_buffer, "Terminator") != NULL) { // Terminator
return 1;
}else if (strstr(class_buffer, "St") != NULL) { // Simple terminal
return 1;
}
}