dotfiles/.local/bin/tools/ce

32 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-03-24 17:16:09 +01:00
#!/bin/bash
2020-12-31 12:18:33 +01:00
#A script that launches documents in their respective viewers
#either via dmenu or fzf depending on the context
ppid () { ps -p ${1:-$$} -o ppid=; }
shell="$(ps aux | grep $( ppid ) | head -n1 | awk '{print $11}' )"
2020-12-31 12:18:33 +01:00
document_dirs="$HOME/.config/* $HOME/.local/src/* $HOME/.local/bin/*"
#/bin/sh means it's probably from dmenu_run (it's ugly but works)
if [ ! "$shell" = "/bin/sh" ]; then
currentdir="$(pwd)"
file="$( find $document_dirs -type f | sed "s|$HOME|~|" | fzf -e --query="$*")"
path="$(printf '%s%s' "$HOME" "${file//\~/}")"
[ -z "$file" ] && exit
cd "$( dirname "$path" )" || exit
if rifle -l "$path" | head -n1 | grep -q 'EDITOR';then
rifle "$path"
2020-12-31 12:18:33 +01:00
else
rifle "$path" &
2020-12-31 12:18:33 +01:00
fi
cd "$currentdir" || exit
#launch dmenu as it's probably in dmenu_run
else
file="$( find $document_dirs -type f | sed "s|$HOME|~|" | dmenu -l 10 -p 'open what file?' -it "$*" )"
[ -z "$file" ] && exit
path="$(printf '%s%s' "$HOME" "${file//\~/}")"
cd "$( dirname "$path" )" || exit
if rifle -l "$path" | head -n1 | grep -q 'EDITOR';then
st rifle "$path" &
2020-12-31 12:18:33 +01:00
else
rifle "$path" &
2020-12-31 12:18:33 +01:00
fi
fi