nathalie/nathalie.py

12 lines
259 B
Python
Raw Permalink Normal View History

2015-12-04 15:19:27 +01:00
#!/usr/bin/python
import os
import random
def switch_nathalie():
say = ['Tout va bien', 'il est $( date +"%H heure %M")', None]
return say[random.randint(0,len(say)-1)]
text = switch_nathalie()
if text:
os.popen('say -v thomas nathalie .... %s'%text)