3 Υποβολές

Συγγραφέας 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
2b1fb5b0c2 EntryPushButton: Set term icon for terminal cmds w/o icon 2020-10-05 22:28:18 +02:00

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