摘要:
i3wm disable i3lock 编辑配置文件 ~/.config/i3/config 注释 i3lock 所在行,最终效果如下 # xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the # s 阅读全文
摘要:
# 创建新线程 import time import threading def f(x): """任务""" print(x) time.sleep(3) print(x) for i in range(5): threading.Thread(target=f, args=(i,)).start 阅读全文