我正在用python为Ubuntu Linux编写一个防RSI/类型中断程序。我希望能够“锁定键盘”,以便忽略所有按键,直到“解锁”为止。我希望能够强制用户休息一下。

我想以某种编程方式“关闭”键盘(即时附近),直到我的程序稍后释放它(可能是0.1秒→10秒后)。当我“关闭键盘”时,不应将任何按键发送给任何窗口,窗口管理器等。最好,屏幕仍应显示相同的内容。即使此程序不在前字体且没有焦点,也应锁定键盘。

某些程序已经可以执行此操作(例如Work Rave)

如何在Linux/X11上执行此操作? (在Python中更可取)

最佳答案

使用xinput使用shell脚本可以很容易地做到这一点:

 #!/bin/sh

 do_it() {
     # need error checking there. We should also restrict which device gets
     # deactivated, by checking other properties.
     keyboard_ids="$(xinput list | sed -rn 's/.*id=([0-9]+).*slave\s+keyboard.*/\1/p')"

     for keyboard_id in $keyboard_ids; do
         # 121 is "Device Active".
         # use xinput watch-props $device_id to see some properties.
         xinput set-int-prop $keyboard_id 121 8 $1;
     done;
 }
 # you maybe don't want to exit in case of failure there.
 do_it 0 ; sleep 5; do_it 1

该逻辑在Python中很容易重写。如果安装xinput是有问题的,那么最好获取xinput的源并尝试使用python-xlib之类的库在Python中重新实现它。

10-05 18:12