| 1123 | } |
| 1124 | |
| 1125 | bool isAppImage(const QString& path) { |
| 1126 | const auto type = appimage_get_type(path.toUtf8(), false); |
| 1127 | return type > 0 && type <= 2; |
| 1128 | } |
| 1129 | |
| 1130 | QString which(const std::string& name) { |
| 1131 | std::vector<char> command(4096); |