diff options
Diffstat (limited to 'zathura/.local/bin')
-rwxr-xr-x | zathura/.local/bin/zathura-sync.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/zathura/.local/bin/zathura-sync.sh b/zathura/.local/bin/zathura-sync.sh new file mode 100755 index 0000000..70aa8c9 --- /dev/null +++ b/zathura/.local/bin/zathura-sync.sh @@ -0,0 +1,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" )
\ No newline at end of file |