Created
April 15, 2016 10:12
-
-
Save KacperKozak/26651b63b12cd96451350f2ba18f655d to your computer and use it in GitHub Desktop.
Translate selected text
This file contains 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
#!/usr/bin/env bash | |
notify-send --icon=info "$(xsel -o)" "$(wget -U "Mozilla/5.0" -qO - "http://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=pl&dt=t&q=$(xsel -o | sed "s/[\"'<>]//g")" | sed "s/,,,0]],,.*//g" | awk -F'"' '{print $2, $6}')" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment