39 lines
1.3 KiB
Bash
Executable File
39 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cleanup() {
|
|
sort -uo "$dictionaryFile" "$dictionaryFile"
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
# Clear the clipboard so you don't accidently send personal info to the translator.
|
|
echo "" | xclip -d "${DISPLAY:-:0}" -selection clipboard 2> /dev/null
|
|
export dictionaryFile="${XDG_CONFIG_HOME:-$HOME/.config}/storm-games/audiogame-manager/translations.txt"
|
|
if [[ ! -r "$dictionaryFile" ]]; then
|
|
touch "$dictionaryFile"
|
|
fi
|
|
while : ; do
|
|
newText=""
|
|
translatedText=""
|
|
newText="$(xclip -d "${DISPLAY:-:0}" -selection clipboard -o 2> /dev/null)"
|
|
sleep 0.01
|
|
if [[ "${#newText}" -lt 1 ]]; then
|
|
continue
|
|
fi
|
|
export newText
|
|
translatedText="$(awk -v originalText="${newText}" 'BEGIN { exitCode = 1; FS = "\\)==:\\[" }
|
|
$1~originalText { print $2; exitCode = 0; exit}
|
|
END { exit exitCode }' "$dictionaryFile")"
|
|
if [[ "${#translatedText}" -ge 1 ]]; then
|
|
spd-say "$translatedText"
|
|
echo "" | xclip -d "${DISPLAY:-:0}" -selection clipboard 2> /dev/null
|
|
continue
|
|
fi
|
|
translatedText="$(trans -b -- "$newText")"
|
|
if [[ "${newText}" != "${translatedText}" ]]; then
|
|
echo "${newText})==:[${translatedText}" >> "$dictionaryFile"
|
|
fi
|
|
spd-say "$translatedText"
|
|
echo "" | xclip -d "${DISPLAY:-:0}" -selection clipboard 2> /dev/null
|
|
done
|