gpt4 book ai didi

python - 如何在 Linux 中检测鼠标和键盘的不活动

转载 作者:IT王子 更新时间:2023-10-29 01:20:32 28 4
gpt4 key购买 nike

我正在 python 上开发一个应用程序,它将检查用户是否处于事件状态。有没有办法在 Linux 中检查按键和鼠标移动事件?

最佳答案

您可以监视/dev/input/* 文件,当按下一个键/移动鼠标时,它会写入其中一个文件。

例如试试这个:

fh = file('/dev/input/mice')
while True:
fh.read(3)
print 'Mouse moved!'

现在我想到了,使用类似 xidle 的东西可能会更好检测不活动。

关于python - 如何在 Linux 中检测鼠标和键盘的不活动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2392076/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com