summaryrefslogtreecommitdiffstats
path: root/zathura/.local/bin/zathura-sync.sh
blob: 70aa8c9a20a21f9030928acf2b99471da2b6b6f6 (plain) (blame)
1
2
3
4
5
6
7
#!/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" )