Сравнить коммиты

..

2 Коммитов

Автор SHA1 Сообщение Дата
1ce3a6c397 fixup! Implement basic 'Terminal=' support for .desktop files 2020-10-05 22:57:43 +02:00
0183ad58b8 add 'terminal=true' support for .qsrun entries 2020-10-05 22:50:53 +02:00
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -223,6 +223,7 @@ EntryConfig EntryProvider::readqsrunFile(const QString &path)
}
result.col = map["col"].toInt();
result.row = map["row"].toInt();
result.isTerminalCommand = map["terminal"] == "true";
return result;
}

Просмотреть файл

@ -123,7 +123,7 @@ void Window::executeConfig(const EntryConfig &config)
if(config.isTerminalCommand)
{
QString cmd = settingsProvider->getTerminalCommand();
cmd.replace("%c", config.command);
cmd.replace("%c", config.command + " " + config.arguments.join(' '));
QProcess::startDetached(cmd);
}
else