10 lines
264 B
Text
10 lines
264 B
Text
|
#!/bin/sh
|
||
|
pos="$1"
|
||
|
pdffile="$2"
|
||
|
zathura --synctex-forward "$pos" "$pdffile" || \
|
||
|
(
|
||
|
zathura -x "emacsclient --eval '(progn (find-file \"%{input}\") (goto-line %{line}))'" "$pdffile" &
|
||
|
sleep 1; zathura --synctex-forward "$pos" "$pdffile" )
|
||
|
|
||
|
exit
|