diff --git a/saythis b/saythis new file mode 100755 index 0000000..4a84604 --- /dev/null +++ b/saythis @@ -0,0 +1,10 @@ +#!/sf/bernina/anaconda/bernina_envs/default/bin/python +import sys +import pyttsx3 +e = pyttsx3.init() +e.say(sys.argv[1]) +e.runAndWait() + + + +