diff options
author | Ken Moore <moorekou@gmail.com> | 2016-07-01 14:19:38 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-07-01 14:19:38 -0400 |
commit | dfb6ebabee46028d3ec25bd72d0affaa1dac70e2 (patch) | |
tree | b5a6a4d8391d61f20c120dc4443203b86742d7bb /src-qt5 | |
parent | Ensure that the quick command run routine will never hang the system for more... (diff) | |
download | lumina-dfb6ebabee46028d3ec25bd72d0affaa1dac70e2.tar.gz lumina-dfb6ebabee46028d3ec25bd72d0affaa1dac70e2.tar.bz2 lumina-dfb6ebabee46028d3ec25bd72d0affaa1dac70e2.zip |
Add the new JSON menu generation scripts to the "core" files installed (since they are basically another type of plugin).
Diffstat (limited to 'src-qt5')
-rw-r--r-- | src-qt5/core/core.pro | 14 | ||||
-rwxr-xr-x | src-qt5/core/menu-scripts/ls.json.sh | 20 |
2 files changed, 30 insertions, 4 deletions
diff --git a/src-qt5/core/core.pro b/src-qt5/core/core.pro index 029c1355..a0d0db3e 100644 --- a/src-qt5/core/core.pro +++ b/src-qt5/core/core.pro @@ -5,10 +5,10 @@ TEMPLATE = subdirs CONFIG += recursive SUBDIRS+= libLumina \ - lumina-desktop \ - lumina-session \ - lumina-open \ - lumina-info + lumina-desktop \ + lumina-session \ + lumina-open \ + lumina-info # lumina-wm-INCOMPLETE \ # lumina-checkpass @@ -18,3 +18,9 @@ lumina-desktop.depends = libLumina lumina-session.depends = libLumina lumina-open.depends = libLumina lumina-info.depends = libLumina + +#Also install any special menu scripts +scripts.path = $${L_SHAREDIR}/lumina-desktop/menu-scripts +scripts.files = menu-scripts/* + +INSTALLS+=scripts diff --git a/src-qt5/core/menu-scripts/ls.json.sh b/src-qt5/core/menu-scripts/ls.json.sh new file mode 100755 index 00000000..626912cb --- /dev/null +++ b/src-qt5/core/menu-scripts/ls.json.sh @@ -0,0 +1,20 @@ +#!/bin/sh +DIR=${1} +if [ "$1" == "" ] ; then + DIR=`pwd` +fi + +ls "${DIR}" > /tmp/.tmp.lines.$$ +while read name +do + if [ -n "${OUT}" ] ; then + OUT="${OUT}," + fi + if [ -d "${DIR}/${name}" ] ; then + OUT="${OUT} \"${name}\" : { \"type\" : \"jsonmenu\", \"exec\" : \"${0} \\\"${DIR}/${name}\\\"\", \"icon\":\"folder\"}" + else + OUT="${OUT} \"${name}\" : { \"type\" : \"item\", \"icon\":\"unknown\", \"action\" : \"xdg-open \\\"${DIR}/${name}\\\"\"}" + fi +done < /tmp/.tmp.lines.$$ +rm /tmp/.tmp.lines.$$ +echo "{ ${OUT} }" |