Skip to content

Instantly share code, notes, and snippets.

@m13m
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m13m/9f298d6fd97a1f77f0c4 to your computer and use it in GitHub Desktop.
Save m13m/9f298d6fd97a1f77f0c4 to your computer and use it in GitHub Desktop.
Google Translate script
#First Install this programs
sudo apt-get install libnotify-bin xsel
#Paste this code into a file and move it to the bin folder
#!/usr/bin/env bash
notify-send -u critical "$(xsel -o)" "$(wget -U "Mozilla/5.0" -qO - "http://translate.google.com/translate_a/t?client=t&text=$(xsel -o | sed "s/[\"'<>]//g")&sl=auto&tl=hi" | sed 's/\[\[\[\"//' | cut -d \" -f 1)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment