5
有沒有一種方法可以使用Python測試系統在Mac上閒置了多久?或者,如果失敗,即使如果系統當前閒置?在Mac上測試不活動的Python
回答
使用從接受的解決方案的信息,這裏是工作中一個醜陋,但功能和相當有效的功能:
from subprocess import *
def idleTime():
'''Return idle time in seconds'''
# Get the output from
# ioreg -c IOHIDSystem
s = Popen(["ioreg", "-c", "IOHIDSystem"], stdout=PIPE).communicate()[0]
lines = s.split('\n')
raw_line = ''
for line in lines:
if line.find('HIDIdleTime') > 0:
raw_line = line
break
nano_seconds = long(raw_line.split('=')[-1])
seconds = nano_seconds/10**9
return seconds
「空閒」是什麼意思?你如何定義它? – 2010-03-11 13:58:33
無論系統定義爲「閒置」。即在制定屏幕保護程序或節能程序之前系統認爲空閒時間是什麼。我假設沒有鼠標或鍵盤移動會很好。 – 2010-03-11 14:17:40