new notes

This commit is contained in:
2026-04-03 22:55:37 +02:00
parent 22106a8170
commit 5a7ce4b7b6
4 changed files with 265 additions and 13 deletions

17
anschreiben/justfile Normal file
View File

@@ -0,0 +1,17 @@
alias c := compile
alias w := watch
in_file := "main.typ"
out_file := "letter.pdf"
compile:
mkdir -p ./out
typst c {{in_file}} out/{{out_file}} --font-path $XDG_DATA_HOME/typst/packages/pandast/pl-docs/0.1.1/
watch: compile
#!/usr/bin/env bash
if command -v okular > /dev/null 2>&1
then
okular out/{{out_file}} &
fi
typst w {{in_file}} out/{{out_file}} --font-path $XDG_DATA_HOME/typst/packages/pandast/pl-docs/0.1.1/