Created
February 8, 2023 07:44
-
-
Save sharpicx/b283cc459b2311b02ebc0f568a884f54 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# by sharpicx @ mycutestgirl.space - ayangnya rifda | |
# translating the selected sentence or word shown by dunstify daemon notification | |
# old func | |
# trans_fromEn() { | |
# translate-cli -f en -t id "$@" | awk -F: '{ print $2 }' | head -3 | tr '\n' ' ' | sed -s 's/[[:space:]]//' | |
# } | |
if [ "$(xsel -b)" == "" ] | |
then | |
dunstify "Translation" "clipboard is about blank to fill in" | |
else | |
dunstify "English -> Indonesian" "$(echo "$(xsel -b)" | translate -s en -t id)" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment