Execute specific command from plasmoid

664 Views Asked by At

I'm writing a Remote Control Plasmoid, I want it to send certain commands over ssh to a remote host, I've tried:

QProcess p;
p.start("/home/user/bin/command");
p.waitfForFinished(-1);

where command is a script which has

#!/bin/bash
ssh user@remote_host remote_command &> /dev/null &

I've also tried using

KRun::run(QString("/home/user/bin/command"), NULL);

but it does nothing, perhaps I'm using it the wrong way? Any suggestions?

1

There are 1 best solutions below

0
On

OK, my problem was that I didn't connect the signals correctly, now I've done that and this part of code works perfectly.

best regards!