From 358d79894e43182c4b8a78070c6de405dbea13df Mon Sep 17 00:00:00 2001 From: Anjandev Momi Date: Thu, 3 Jun 2021 01:36:05 +0000 Subject: [PATCH] sxmo_files: add "open in st" for current directory Signed-off-by: Maarten van Gompel --- scripts/appscripts/sxmo_files.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/appscripts/sxmo_files.sh b/scripts/appscripts/sxmo_files.sh index 2536cab..3c71e3d 100755 --- a/scripts/appscripts/sxmo_files.sh +++ b/scripts/appscripts/sxmo_files.sh @@ -29,7 +29,7 @@ sort_loop() { while true; do # shellcheck disable=SC2086 FILES="$(ls -1p $SORT $REVERSE)" - CHOICES="$(printf %b 'Reload\nClose Menu\nSort By\n../\n*\n'"$FILES")" + CHOICES="$(printf %b 'Reload\nOpen in st\nClose Menu\nSort By\n../\n*\n'"$FILES")" DIR="$(basename "$(pwd)")" TRUNCATED="$(printf %.7s "$DIR")" if [ "$DIR" != "$TRUNCATED" ]; then @@ -43,11 +43,12 @@ while true; do )" || exit echo "$PICKED" | grep "Sort By" && sort_loop + echo "$PICKED" | grep "Open in st" && cd "$(pwd)" && st echo "$PICKED" | grep "Close Menu" && exit 0 echo "$PICKED" | grep "Reload" && continue [ -d "$PICKED" ] && cd "$PICKED" && continue echo "$PICKED" | grep -E '^[*]$' && sxmo_open.sh -a ./* - if [ -f "$PICKED" ]; then + if [ -f "$PICKED" ] || [ "$PICKED" = "Open in st" ]; then echo "$FILES" | sed -n -e "/$PICKED/,\$p" | tr '\n' '\0' | xargs -0 sxmo_open.sh -a fi done