input-event-daemon
input-event-daemon [ [ --monitor | --list | --help | --version ] |
[--config=FILE] [--verbose] [--no-daemon] ]
启动监控模式。在这种模式下,不执行特定操作,而是显示每个输入事件和触发它的设备文件。这个选项是专门指定的。
-l, –list
列举出所有输入设备,显示名字,特性,和物理路径。这个选项是专门指定的。
-c, –config=FILE
指定使用的配置文件,默认为 /etc/input-event-daemon.conf。在 monitoring 模式中无效。
-v, –verbose
打印配置文件中处理的每个事件,这个选项通常和 –no-daemon 结合使用。
-D, –no-daemon
-V, –version
配置文件:
例子
A common configuration file may look like this:
#
# /etc/input-event-daemon.conf
#
[Global]
listen = /dev/input/event0
listen = /dev/input/event1
[Keys]
MUTE = amixer -q set Master mute
CTRL+ALT+ESC = shutdown -h now
[Switches]
RADIO:0 = ifconfig wlan0 down
[Idle]
1h 30m = vbetool dpms off
reset = vbetool dpms on
[Global]
指定所有需要监听的设备,并且这个选项只能使用一次。
[Keys]
指定快捷键对应执行的命令,每个快捷方式执行定义一次。(多条命令以“;”分号间隔)
[Switches]
本节定义在指定开关设置为定义值时执行的命令。开关名称和值由冒号分隔开。
[Idle]