blob: 4384ffe6808960b5c22dbf6e18566913f41ec1a1 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
 | #!/bin/sh
pos="$1"
pdffile="$2"
zathura --synctex-forward "$pos" "$pdffile" || \
    (
    zathura -x "emacsclient --eval '(progn (switch-to-buffer (file-name-nondirectory \"%{input}\")) (goto-line %{line}))'" "$pdffile" &
    sleep 1; zathura --synctex-forward "$pos" "$pdffile" )
 |