diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-07-15 13:15:47 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2024-07-15 13:15:47 -0400 |
commit | 114d8f292d177b71ea08c55b70d7856e1bc50baa (patch) | |
tree | 14e632a79458f24945b5b312660e5171779466b5 /.local/bin/compiler | |
parent | 2ac634353abc4175236181732f8d23bdad8fc0eb (diff) |
ttf/otf font preview within lf
Diffstat (limited to '.local/bin/compiler')
-rwxr-xr-x | .local/bin/compiler | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.local/bin/compiler b/.local/bin/compiler index e6a6db3..5754848 100755 --- a/.local/bin/compiler +++ b/.local/bin/compiler @@ -13,13 +13,13 @@ base="${file%.*}" cd "$dir" || exit textype() { - command="pdflatex" - (sed 5q "$file" | grep -i -q 'xelatex') && command="xelatex" - $command --output-directory="$dir" "$base" && - grep -i addbibresource "$file" >/dev/null && - biber --input-directory "$dir" "$base" && - $command --output-directory="$dir" "$base" && - $command --output-directory="$dir" "$base" + command="pdflatex" + (sed 5q "$file" | grep -i -q 'xelatex') && command="xelatex" + $command --output-directory="$dir" "$base" && + grep -i addbibresource "$file" >/dev/null && + biber --input-directory "$dir" "$base" && + $command --output-directory="$dir" "$base" && + $command --output-directory="$dir" "$base" } case "$file" in |