From 198462764f1481187a369264864201457fe3a903 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Fri, 4 Jun 2021 21:54:35 +0200 Subject: [PATCH] small patch to reconcile the last two commits --- scripts/appscripts/sxmo_files.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/appscripts/sxmo_files.sh b/scripts/appscripts/sxmo_files.sh index 3c71e3d..d8aa861 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\nOpen in st\nClose Menu\nSort By\n../\n*\n'"$FILES")" + CHOICES="$(printf %b 'Reload\nOpen in terminal\nClose Menu\nSort By\n../\n*\n'"$FILES")" DIR="$(basename "$(pwd)")" TRUNCATED="$(printf %.7s "$DIR")" if [ "$DIR" != "$TRUNCATED" ]; then @@ -43,12 +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 "Open in terminal" && cd "$(pwd)" && sxmo_terminal.sh 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" ] || [ "$PICKED" = "Open in st" ]; then + if [ -f "$PICKED" ] || [ "$PICKED" = "Open in terminal" ]; then echo "$FILES" | sed -n -e "/$PICKED/,\$p" | tr '\n' '\0' | xargs -0 sxmo_open.sh -a fi done