如果我按下我的脚本快捷方式,自动键通常会停止工作F12
大约每70%。大约每 50% 的图标会变红,并且 autoKey 会冻结。CPU 负载增加了一点。
很难说可能是什么原因。
我通过在将桌面录制到视频文件(youtube LKl4Ufhh3P8)时发送来进行调试。
它通过wine打开一个菜单(称为lintalist的autoHotKey脚本)并捕获更改的剪贴板并将其写出。
当我重新启动 autoKey 脚本时,它会运行几次(可能是三到五次)。我在各个点插入了 100 毫秒作为暂停。从那时起,我不必重新启动操作系统,只需在脚本冻结时将其杀死。
知道要尝试什么吗?
为了调试,我使用了这样的小帮手:
import subprocess
doPopupNotify_howItWorks_counter = 0
doPopupNotify_howItWorks_firstNr = 15
doPopupNotify_howItWorks = True
def popupNotify(text):
subprocess.Popen(['notify-send', text]) # will be showed right top
def popupNotify_howItWorks(text):
global doPopupNotify_howItWorks, doPopupNotify_howItWorks_counter
if not doPopupNotify_howItWorks:
return
doPopupNotify_howItWorks_counter = doPopupNotify_howItWorks_counter + 1
if doPopupNotify_howItWorks_counter < doPopupNotify_howItWorks_firstNr:
return
subprocess.Popen(['notify-send', str(doPopupNotify_howItWorks_counter) + ") " + text]) # will be showed right top
time.sleep(.2)
系统
Operating System: Kubuntu 20.04
KDE Plasma Version: 5.18.5
KDE Frameworks Version: 5.68.0
Qt Version: 5.12.8
Kernel Version: 5.4.0-52-generic
OS Type: 64-bit
autoKey gtk 0.95.10