mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
760 B
28 lines
760 B
#include <singleapplication.h>
|
|
#include "messagereceiver.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// Allow secondary instances
|
|
SingleApplication app( argc, argv, true );
|
|
|
|
MessageReceiver msgReceiver;
|
|
|
|
// If this is a secondary instance
|
|
if( app.isSecondary() ) {
|
|
app.sendMessage( app.arguments().join(' ').toUtf8() );
|
|
qDebug() << "App already running.";
|
|
qDebug() << "Primary instance PID: " << app.primaryPid();
|
|
qDebug() << "Primary instance user: " << app.primaryUser();
|
|
return 0;
|
|
} else {
|
|
QObject::connect(
|
|
&app,
|
|
&SingleApplication::receivedMessage,
|
|
&msgReceiver,
|
|
&MessageReceiver::receivedMessage
|
|
);
|
|
}
|
|
|
|
return app.exec();
|
|
}
|
|
|