Skip to content

Instantly share code, notes, and snippets.

@meysampg
Last active October 30, 2019 16:15
Show Gist options
  • Save meysampg/d3389713d70103ceb1cbb8a8f96f9568 to your computer and use it in GitHub Desktop.
Save meysampg/d3389713d70103ceb1cbb8a8f96f9568 to your computer and use it in GitHub Desktop.
translate word and send notify
#!/usr/bin/env bash
translate() {
notify-send "$1" $(trans -no-bidi -b :@fa "$1")
}
select_and_translate() {
translate "$(xclip -out -selection primary)"
}
select_and_translate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment