mirror of https://github.com/cutefishos/appmotor
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 1774f02e56d968bd1d36ad3e562355510dcdfb8e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Pertti=20Kellom=C3=A4ki?= <pertti.kellomaki@nokia.com>
|
|
Date: Wed, 1 Sep 2010 15:22:16 +0300
|
|
Subject: [PATCH] Changes: In MeeGo, install file /etc/xdg/autostart/applauncherd.desktop
|
|
to automatically start applauncherd in UI session.
|
|
|
|
---
|
|
CMakeLists.txt | 4 ++++
|
|
meego/applauncherd.desktop | 4 ++++
|
|
2 files changed, 8 insertions(+), 0 deletions(-)
|
|
create mode 100644 meego/applauncherd.desktop
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index cac933a..eb96da3 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -81,3 +81,7 @@ install(FILES data/pkgconfig/meegotouch-boostable.pc DESTINATION /usr/lib/pkgcon
|
|
# Install the qmake config feature file
|
|
install(FILES data/mkspecs/features/meegotouch-boostable.prf DESTINATION /usr/share/qt4/mkspecs/features)
|
|
|
|
+if ($ENV{MEEGO})
|
|
+ install(FILES meego/applauncherd.desktop DESTINATION /etc/xdg/autostart)
|
|
+endif ($ENV{MEEGO})
|
|
+
|
|
diff --git a/meego/applauncherd.desktop b/meego/applauncherd.desktop
|
|
new file mode 100644
|
|
index 0000000..cf1348d
|
|
--- /dev/null
|
|
+++ b/meego/applauncherd.desktop
|
|
@@ -0,0 +1,4 @@
|
|
+[Desktop Entry]
|
|
+Exec=/usr/bin/applauncherd
|
|
+X-Moblin-Priority=High
|
|
+OnlyShowIn=X-MEEGO-HS;
|
|
--
|
|
1.7.0.4
|
|
|