[mailcap] Fix paths and add dragon action to feh

This commit is contained in:
lara 2020-11-20 19:18:03 +01:00
parent 776a83d71c
commit 406c694bdc
2 changed files with 12 additions and 4 deletions

10
bin/dragon Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
# We use a script instead of an alias because we want this utility in our path,
# usable from dmenu
if ! which dragon-drag-and-drop > /dev/null 2>&1; then
echo "Error: dragon-drag-and-drop isn't installed!" | tee /dev/fd/2 | xargs -n1 -d "\n" notify-send
fi
dragon-drag-and-drop $*

View file

@ -1,5 +1,3 @@
text/html; unshare -n -r w3m -I %{charset} -T text/html; copiousoutput;
image/*; mutt_bgrun /usr/bin/feh -. %s; test=test -n "$DISPLAY"
#application/pdf; /usr/local/bin/mutt_bgrun /usr/bin/evince %s; test=test -n "$DISPLAY"
application/pdf; evince %s; test=test -n "$DISPLAY"
image/*; mutt_bgrun /usr/bin/feh --action1 ";dragon -x '\%F'" -. %s; test=test -n "$DISPLAY"
application/pdf; mutt_bgrun /usr/bin/zathura %s; test=test -n "$DISPLAY"