11 lines
185 B
Bash
Executable File
11 lines
185 B
Bash
Executable File
#! /bin/bash
|
|
|
|
while clipnotify; do
|
|
selection=`xclip -o`
|
|
translation=`trans -b ro:en "$selection"`
|
|
echo $selection
|
|
echo $translation
|
|
# notify-send $translation
|
|
done
|
|
|