aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/desktop-utils/lumina-xdg-entry/Lumina-XDG-Entry.desktop11
-rw-r--r--src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro5
-rw-r--r--src-qt5/desktop-utils/lumina-xdg-entry/main.cpp1
3 files changed, 17 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/Lumina-XDG-Entry.desktop b/src-qt5/desktop-utils/lumina-xdg-entry/Lumina-XDG-Entry.desktop
new file mode 100644
index 00000000..3e0d2cfb
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-xdg-entry/Lumina-XDG-Entry.desktop
@@ -0,0 +1,11 @@
+{Desktop Entry]
+Type=Application
+Version=1.0
+Name=Lumina-XDG-Entry
+GenericName=.desktop file Creator
+Comment=
+Icon=
+Terminal=false
+Exec=/usr/local/bin/lumina-xdg-entry
+Categories=Utility;;
+Keywords=
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
index c146a687..96b0a758 100644
--- a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
+++ b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
@@ -11,6 +11,7 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = lumina-xdg-entry
TEMPLATE = app
+target.path = $${L_BINDIR}
DEFINES += QT_DEPRECATED_WARNINGS
@@ -20,3 +21,7 @@ SOURCES += main.cpp\
HEADERS += mainwindow.h
FORMS += mainwindow.ui
+
+desktop.files=lumina-xdg-entry.desktop
+desktop.path=$${L_SHAREDIR}/applications/
+
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp b/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp
index dc117447..70ac8671 100644
--- a/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp
+++ b/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp
@@ -10,6 +10,7 @@ int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
+ w.setWindowTitle(".Desktop Creator");
w.show();
return a.exec();
bgstack15