From e4971b3dbf0691e08d79a399b8645b87ea9c81a1 Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Thu, 15 May 2014 12:07:39 +0200 Subject: [PATCH] wayland: Add installed apps to launcher Note: the could be also done at runtime but it's better to be on live images too. Change-Id: I08eda268e9c48d5571aa4ff092c4392810b0ac80 Signed-off-by: Philippe Coval --- scripts/common-wayland.post | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/scripts/common-wayland.post b/scripts/common-wayland.post index 23f9cda..c855032 100644 --- a/scripts/common-wayland.post +++ b/scripts/common-wayland.post @@ -36,3 +36,17 @@ EOF # clean weston target inside user session (installed by weston) rm -f /usr/lib/systemd/user/weston.target + +#{ Add installed apps for tizen to launcher if not present +dst="/usr/share/applications/tizen/launcher.conf" + +if [ -w "$dst" ] ; then + ls /usr/share/applications/tizen/*.desktop \ + | while read src; do + grep "$src" "$dst" \ + || { [ ! -r "$src" ] || echo "$src" >> "$dst" ; } + + done +fi + +#} -- 2.7.4