Add function to check for installed program
Notifies if program is missing.
This commit is contained in:
parent
eb88925501
commit
d4ae593f50
2 changed files with 14 additions and 3 deletions
|
@ -15,8 +15,11 @@ base="${file%.*}"
|
||||||
cd "$dir" || exit
|
cd "$dir" || exit
|
||||||
|
|
||||||
textype() {
|
textype() {
|
||||||
command="pdflatex"
|
if (sed 5q "$file" | grep -i -q 'xelatex') && ifinstalled xelatex; then
|
||||||
(sed 5q "$file" | grep -i -q 'xelatex') && command="xelatex"
|
command="xelatex"
|
||||||
|
elif ifinstalled pdflatex; then
|
||||||
|
command="pdflatex"
|
||||||
|
fi
|
||||||
$command --output-directory="$dir" "$base" &&
|
$command --output-directory="$dir" "$base" &&
|
||||||
grep -i addbibresource "$file" >/dev/null &&
|
grep -i addbibresource "$file" >/dev/null &&
|
||||||
biber --input-directory "$dir" "$base" &&
|
biber --input-directory "$dir" "$base" &&
|
||||||
|
@ -24,11 +27,15 @@ textype() {
|
||||||
$command --output-directory="$dir" "$base"
|
$command --output-directory="$dir" "$base"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sendtoRmd() {
|
||||||
|
ifinstalled R && echo "require(rmarkdown); render('$1')" | R -q --vanilla
|
||||||
|
}
|
||||||
|
|
||||||
case "$file" in
|
case "$file" in
|
||||||
*\.ms) refer -PS -e "$file" | groff -me -ms -kept -T pdf >"$base".pdf ;;
|
*\.ms) refer -PS -e "$file" | groff -me -ms -kept -T pdf >"$base".pdf ;;
|
||||||
*\.mom) refer -PS -e "$file" | groff -mom -kept -T pdf >"$base".pdf ;;
|
*\.mom) refer -PS -e "$file" | groff -mom -kept -T pdf >"$base".pdf ;;
|
||||||
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf >"$base".pdf ;;
|
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf >"$base".pdf ;;
|
||||||
*\.[Rr]md | *\.md | *\.mkd | *\.markdown) echo "require(rmarkdown); render('$file')" | R -q --vanilla ;;
|
*\.[Rr]md | *\.md | *\.mkd | *\.markdown) sendtoRmd "$file" ;;
|
||||||
*\.tex) textype "$file" ;;
|
*\.tex) textype "$file" ;;
|
||||||
*config.h) sudo make install ;;
|
*config.h) sudo make install ;;
|
||||||
*\.c) cc "$file" -o "$base" && "$base" ;;
|
*\.c) cc "$file" -o "$base" && "$base" ;;
|
||||||
|
|
4
.local/bin/ifinstalled
Executable file
4
.local/bin/ifinstalled
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
# If $1 command is not available, error code and notify.
|
||||||
|
|
||||||
|
command -v "$1" >/dev/null || { notify-send "📦 $1" "must be installed for this function." && exit 1 ;}
|
Loading…
Reference in a new issue