neodotfiles/user/.config/rofi/scripts/rofi_edit

27 lines
686 B
Text
Raw Normal View History

2022-09-13 01:06:55 +00:00
#!/usr/bin/env bash
# ***This script was made by Clay Gomera (Drake)***
# - Description: A simple script for file editing in rofi
# - Dependencies: rofi (Everything else can be changed)
# Show list of options
2022-12-08 03:13:08 +00:00
EDITOR="emacsclient -c -a emacs"
2022-09-13 01:06:55 +00:00
cd "$HOME" || exit 0
file=1
while [ "$file" ]; do
2022-12-08 03:13:08 +00:00
file=$(fd -LHpd 1 | rofi -dmenu -p "File to edit: $(basename "$(pwd)")")
2022-09-13 01:06:55 +00:00
if [ -e "$file" ]; then
owd=$(pwd)
if [ -d "$file" ]; then
cd "$file" || exit 0
else [ -f "$file" ]
if [ "$file" ]; then
$EDITOR "$owd/$file" &
exit 0
else
exit 0
fi
fi
fi
done