You've already forked ukui-desktop-software-control
mirror of
https://github.com/ukui/ukui-desktop-software-control.git
synced 2026-03-09 09:33:59 -07:00
18 lines
434 B
C++
Executable File
18 lines
434 B
C++
Executable File
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
#include <QtDBus>
|
|
#include <QString>
|
|
#include <thread>
|
|
#include "service.h"
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
Service service;
|
|
// UkuiMenuInterface face;
|
|
// qDebug()<<face.getAppExec("/home/jiaodian/桌面/wps-office-pdf.desktop");
|
|
// qDebug()<<service.getExec("/home/jiaodian/桌面/wps-office-pdf.desktop");
|
|
return a.exec();
|
|
}
|