blob: 2923d68f764ec4231f7889666313c20376db4e42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
if [ -x /usr/bin/notify-send ]; then
err() { notify-send -a TeXtidote -i /usr/share/textidote/textidote-icon.svg "$*"; }
else
err() { printf "%s\n" "$*" >&2; }
fi
[ $# -lt 1 ] && err "At least one file should be provided as input" && exit
dir=$(dirname "$1")
pushd "$dir" || err "$dir does not exist" && exit
java -jar /usr/share/java/textidote.jar --check en --output html "$@" > /tmp/textidote.html
popd || exit
xdg-open /tmp/textidote.html &
|