I'm using Geektool on my Mac to display info about my computer on my desktop, plus some date and time info. I'm trying to find a script that will display a time in hours since a certain time (4.30pm, July 28, 2010).
I don't have any experience with this stuff but I have managed to find a code that can display a time in days;
python -c 'from datetime import *; print (date(2010, 07, 28) - date.today()).days'
Is there any way this can be adjusted for a time in hours?
