mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2025-01-06 01:53:40 +01:00
9 lines
185 B
Bash
Executable file
9 lines
185 B
Bash
Executable file
#!/usr/bin/env bash
|
|
tmpf=$(mktemp --suffix=.pdf)
|
|
trap 'kill $(jobs -p); rm "$tmpf"' EXIT
|
|
|
|
typst watch "$1" "$tmpf" "${@:2}" &
|
|
|
|
while [ ! -f "$tmpf" ]; do sleep 1; done
|
|
|
|
zathura "$tmpf"
|