diff options
author | Ken Moore <ken@pcbsd.org> | 2016-09-16 08:18:52 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2016-09-16 08:18:52 -0400 |
commit | 0f64b1c0d0db19a6dbd01262e6d00174241d3930 (patch) | |
tree | bf287e4e31d68562232ed969170bd43494fb7e44 /src-qt5 | |
parent | Adjust the ls.json.sh script a bit so every directory gets an "open directory... (diff) | |
download | lumina-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-x | src-qt5/core/menu-scripts/ls.json.sh | 2 |
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 |