aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2016-09-16 08:18:52 -0400
committerKen Moore <ken@pcbsd.org>2016-09-16 08:18:52 -0400
commit0f64b1c0d0db19a6dbd01262e6d00174241d3930 (patch)
treebf287e4e31d68562232ed969170bd43494fb7e44 /src-qt5
parentAdjust the ls.json.sh script a bit so every directory gets an "open directory... (diff)
downloadlumina-0f64b1c0d0db19a6dbd01262e6d00174241d3930.tar.gz
lumina-0f64b1c0d0db19a6dbd01262e6d00174241d3930.tar.bz2
lumina-0f64b1c0d0db19a6dbd01262e6d00174241d3930.zip
Another quick fix for the menu script - ensure the open directory option is always at the top of the list.
Diffstat (limited to 'src-qt5')
-rwxr-xr-xsrc-qt5/core/menu-scripts/ls.json.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/menu-scripts/ls.json.sh b/src-qt5/core/menu-scripts/ls.json.sh
index 9c63c2b8..43b0ead6 100755
--- a/src-qt5/core/menu-scripts/ls.json.sh
+++ b/src-qt5/core/menu-scripts/ls.json.sh
@@ -4,7 +4,7 @@ if [ "$1" == "" ] ; then
DIR=`pwd`
fi
-OUT="${OUT} \"Open Directory\" : { \"type\" : \"item\", \"icon\":\"document-open\", \"action\" : \"xdg-open \\\"${DIR}\\\"\"}"
+OUT="${OUT} \" Open Directory\" : { \"type\" : \"item\", \"icon\":\"document-open\", \"action\" : \"xdg-open \\\"${DIR}\\\"\"}"
ls "${DIR}" > /tmp/.tmp.lines.$$
while read name
do
bgstack15