Move user-level configs out of rc.org
[~bandali/configs] / .local / bin / zathura-sync
1 #!/bin/sh
2 pos="$1"
3 pdffile="$2"
4 zathura --synctex-forward "$pos" "$pdffile" || \
5 (
6 zathura -x "emacsclient --eval '(progn (switch-to-buffer (file-name-nondirectory \"%{input}\")) (goto-line %{line}))'" "$pdffile" &
7 sleep 1; zathura --synctex-forward "$pos" "$pdffile" )