suckless_dictpopup/dictpopup
2023-05-29 23:34:10 -04:00

11 lines
282 B
Bash
Executable file

#!/bin/sh
if [ "$1" == "html" ] || [ "$1" == "HTML" ]; then
word=${2:-$(sselp)}
sdcv -n --utf8-output -e "$word" | perl -pe 's/<[^>]*>//g' | popup
else
word=${1:-$(sselp)}
sdcv -n --utf8-output -e "$word" | perl -pe 's/<[^>]*>//g' | popup
fi