dotfiles/.local/bin/tools/de

29 lines
1.0 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/*"
#/bin/sh means it's probably from dmenu_run (it's ugly but works)
if [ "$shell" = "/bin/sh" ]; then
file="$( du -a $document_dirs | awk '{for(i=2; i<NF; i++){printf("%s ", $i)}printf("%s\n", $NF)}'| dmenu -l 10 -p 'open what file?' -it "$*" )"
2020-12-24 14:21:41 +01:00
[ -z "$file" ] && exit
cd "$( dirname "$file" )" || exit
if rifle -l "$file" | head -n1 | grep -q 'EDITOR';then
st rifle "$file"
else
rifle "$file"
fi
else
currentdir="$(pwd)"
file="$( du -a $document_dirs | awk '{for(i=2; i<NF; i++){printf("%s ", $i)}printf("%s\n", $NF)}' | fzf -e --query="$*")"
[ -z "$file" ] && exit
cd "$( dirname "$file" )" || exit
if rifle -l "$file" | head -n1 | grep -q 'EDITOR';then
rifle "$file"
else
rifle "$file" & disown
fi
cd "$currentdir" || exit
fi