diff options
Diffstat (limited to '.local/bin/zathura-sync')
-rwxr-xr-x | .local/bin/zathura-sync | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.local/bin/zathura-sync b/.local/bin/zathura-sync new file mode 100755 index 0000000..4384ffe --- /dev/null +++ b/.local/bin/zathura-sync @@ -0,0 +1,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" ) |