dotfiles/.config/sway/wofi/wofi_fbrun

75 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
##########################################################################
# wofi_fbrun - wofi-dmenu script that simulates 'rofi -show filebrowser' #
# #
# Author: q3aql <q3aql@duck.com> #
# Last update: 04-01-2023 #
##########################################################################
# Configuration variables
load_theme_path="${HOME}/.wofi"
function generate_spaces() {
num_spaces=${1}
count_spaces=1
while [ ${count_spaces} -le ${num_spaces} ] ; do
echo -n " "
count_spaces=$(expr ${count_spaces} + 1)
done
}
function show_icon_tree() {
ls -1 | while read current ; do
if [ -f "${current}" ] ; then
echo "${current}"
elif [ -d "${current}" ] ; then
echo "${current}"
else
echo "${current}"
fi
done
generate_spaces 75
}
function remove_icon() {
entry="${@}"
remove_icon_space=0
read_entry=$(echo "${entry}" | grep " ")
if ! [ -z "${read_entry}" ] ; then
remove_icon_space=1
fi
read_entry=$(echo "${entry}" | grep " ")
if ! [ -z "${read_entry}" ] ; then
remove_icon_space=1
fi
read_entry=$(echo "${entry}" | grep " ")
if ! [ -z "${read_entry}" ] ; then
remove_icon_space=1
fi
if [ ${remove_icon_space} -eq 1 ] ; then
show_output=$(echo "${entry}" | cut -c4-999 | tr -s " " | cut -c2-999)
echo "${show_output}"
else
echo "${entry}"
fi
}
file=1
while [ "${file}" ]; do
file_icon=$(show_icon_tree | wofi --dmenu -i -p " filebrowser: $(basename $(pwd))")
file=$(remove_icon "${file_icon}")
echo "# ${file} #"
if [ -e "${file}" ]; then
owd=$(pwd)
if [ -d "${file}" ]; then
cd "${file}"
else [ -f "${file}" ]
if which xdg-open &> /dev/null; then
exec xdg-open "${owd}/${file}" &
unset file
fi
fi
fi
done