Fix weird behavior and simplify even more.

This commit is contained in:
Konstantin 2023-05-29 23:34:10 -04:00 committed by GitHub
parent d51775ab63
commit 1ee5529f31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,10 @@
#!/bin/sh
# Looks up argument instead, if provided
word=${1:-$(xclip -o)}
[ -z "$word" ] && exit 1
dict_lookup=$(sdcv -n --utf8-output -e "$word")
if echo "$dict_lookup" | grep -F -q "Nothing similar to"; then
popup "$dict_lookup"
if [ "$1" == "html" ] || [ "$1" == "HTML" ]; then
word=${2:-$(sselp)}
sdcv -n --utf8-output -e "$word" | perl -pe 's/<[^>]*>//g' | popup
else
output=$(echo "$dict_lookup" | tail -n +5 | sed 's|<br>|\n|g')
output=$(echo "$output" | perl -pe 's/<[^>]*>//g')
printf '%s\0' "$output" | xargs -0 -I {} sh -c 'popup "$@"' _ {}
word=${1:-$(sselp)}
sdcv -n --utf8-output -e "$word" | perl -pe 's/<[^>]*>//g' | popup
fi