dotfiles/.local/bin/tools/de

37 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-12-24 14:21:41 +01:00
#!/bin/bash
#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}' )"
document_dirs="$HOME/bks/* $HOME/eth/* $HOME/dox/*"
2020-12-31 14:58:11 +01:00
#force launch dmenu via cmd
if [ "$1" = "launchdmenu" ]; then
2021-01-02 10:54:22 +01:00
file="$( find $document_dirs -type f | sed "s|$HOME|~|"| dmenu -l 10 -p 'open what file?')"
2020-12-24 14:21:41 +01:00
#/bin/sh means it's probably from dmenu_run (it's ugly but works)
2020-12-31 14:58:11 +01:00
elif [ ! "$shell" = "/bin/sh" ]; then
2020-12-24 14:21:41 +01:00
currentdir="$(pwd)"
2021-01-02 10:54:22 +01:00
file="$( find $document_dirs -type f | sed "s|$HOME|~|" | fzf -e --query="$*")"
path="$(printf '%s%s' "$HOME" "${file//\~/}")"
2020-12-24 14:21:41 +01:00
[ -z "$file" ] && exit
2021-01-02 10:54:22 +01:00
cd "$( dirname "$path" )" || exit
if rifle -l "$path" | head -n1 | grep -q 'EDITOR';then
rifle "$path"
2020-12-24 14:21:41 +01:00
else
2021-01-02 10:54:22 +01:00
rifle "$path" & disown
2020-12-24 14:21:41 +01:00
fi
cd "$currentdir" || exit
2020-12-31 14:58:11 +01:00
exit
#launch dmenu as it's probably in dmenu_run
else
2021-01-02 10:54:22 +01:00
file="$( find $document_dirs -type f | sed "s|$HOME|~|" | dmenu -l 10 -p 'open what file?' -it "$*" )"
2020-12-31 14:58:11 +01:00
fi
#process selection if it's from dmenu
[ -z "$file" ] && exit
2021-01-02 10:54:22 +01:00
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 14:58:11 +01:00
else
2021-01-02 10:54:22 +01:00
rifle "$path"
2020-12-24 14:21:41 +01:00
fi