Add file browser example.

-switchers "file:rofi-file-browser.sh" -show file
This commit is contained in:
Dave Davenport 2015-01-28 07:49:52 +01:00
parent 7c81152ca5
commit 836036574b
1 changed files with 46 additions and 0 deletions

46
Examples/rofi-file-browser.sh Executable file
View File

@ -0,0 +1,46 @@
#!/usr/bin/env bash
EDITOR=xdg-open
CUR_DIR=$PWD
PREV_LOC_FILE=~/.rofi_fb_prevloc
# Read last location, otherwise we default to PWD.
if [ -f "${PREV_LOC_FILE}" ]
then
CUR_DIR=$(cat "${PREV_LOC_FILE}")
fi
# Handle argument.
if [ -n "$@" ]
then
CUR_DIR="${CUR_DIR}/$@"
fi
# If argument is no directory.
if [ ! -d "${CUR_DIR}" ]
then
if [ -x "${CUR_DIR}" ]
then
coproc ( "${CUR_DIR}" & > /dev/null 2>&1 )
exec 1>&-
exit;
elif [ -f "${CUR_DIR}" ]
then
coproc ( ${EDITOR} "${CUR_DIR}" & > /dev/null 2>&1 )
exit;
fi
exit;
fi
# process current dir.
if [ -n "${CUR_DIR}" ]
then
CUR_DIR=$(readlink -e "${CUR_DIR}")
echo "${CUR_DIR}" > "${PREV_LOC_FILE}"
pushd "${CUR_DIR}" >/dev/null
fi
echo ".."
ls