Somes time I need to know what is the current time while watching a movie(mediaplayer classic).
I don't find any source for that in Eventghost.
After searching on the net I've try this script:
#!/usr/bin/python
import time;
localtime = time.asctime( time.localtime(time.time()) )
print "Maintenant:", localtime
It works on the eventghost log, but I wish to show the result on the screen in first front.
Is that possible?
Many thanks, cheers
