summaryrefslogtreecommitdiffstats
path: root/Examples
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-10-23 13:49:34 +0200
committerDave Davenport <qball@gmpclient.org>2016-10-23 13:49:34 +0200
commit5f1cd754923dc409e38e39ba5a9809be6e75b2c9 (patch)
tree26176ce348bf8caae96ca837bec315a4c59861a0 /Examples
parent0ae0d50bbc073f7a9f7a7be1666980a8f7573f61 (diff)
Fix filebrowser script, Fixes #486
Diffstat (limited to 'Examples')
-rwxr-xr-xExamples/rofi-file-browser.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/rofi-file-browser.sh b/Examples/rofi-file-browser.sh
index 4b36532f..397a5dfe 100755
--- a/Examples/rofi-file-browser.sh
+++ b/Examples/rofi-file-browser.sh
@@ -53,7 +53,7 @@ if [ ! -d "${ROFI_FB_CUR_DIR}" ]
then
if [ -x "${ROFI_FB_CUR_DIR}" ]
then
- coproc ( "${ROFI_FB_CUR_DIR}" & > /dev/null 2>&1 )
+ coproc ( "${ROFI_FB_CUR_DIR}" > /dev/null 2>&1 )
exec 1>&-
exit;
elif [ -f "${ROFI_FB_CUR_DIR}" ]
@@ -70,7 +70,7 @@ then
fi
fi
# Open the selected entry with $ROFI_FB_GENERIC_FO
- coproc ( "${ROFI_FB_GENERIC_FO}" "${ROFI_FB_CUR_DIR}" & > /dev/null 2>&1 )
+ coproc ( "${ROFI_FB_GENERIC_FO}" "${ROFI_FB_CUR_DIR}" > /dev/null 2>&1 )
if [ -d "${ROFI_FB_START_DIR}" ]
then
echo "${ROFI_FB_START_DIR}" > "${ROFI_FB_PREV_LOC_FILE}"