From c06d0577ca1888be8120276d119f3451b4d85cb9 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 30 Jul 2023 09:43:31 +0200 Subject: [PATCH] [unoconv-display] Print cache file names --- unoconv-display | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unoconv-display b/unoconv-display index 3b45709..46cd12d 100644 --- a/unoconv-display +++ b/unoconv-display @@ -37,10 +37,12 @@ if [ -d "$dir" ]; then # Start text viewer case $fmt in emacs) exec emacsclient -e "(view-file \"$txt\")" > /dev/null + echo "$txt" 1>&2 exit 0 ;; pdf) exec zathura --fork "$pdf" 2>> "/tmp/err" & + echo "$pdf" 1>&2 exit 0 ;; *) -- 2.39.2