mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2025-01-07 23:23:39 +01:00
8 lines
143 B
Bash
8 lines
143 B
Bash
|
#!/usr/bin/env bash
|
||
|
tmpf=$(mktemp --suffix=.pdf)
|
||
|
trap 'kill $(jobs -p); rm "$tmpf"' EXIT
|
||
|
|
||
|
typst watch "$1" "$tmpf" "${@:2}" &
|
||
|
|
||
|
zathura "$tmpf"
|