按键脚本存储在哪里?

按键脚本存储在哪里?

当我按下“调高音量”多媒体键时,我收到以下输出xev

KeyRelease event, serial 38, synthetic NO, window 0x4200001,
    root 0x91, subw 0x0, time 100844850, (1037,434), root:(1102,486),
    state 0x10, keycode 123 (keysym 0x1008ff13, XF86AudioRaiseVolume), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

命令XF86AudioRaiseVolume存储在哪里?我如何通过终端运行它?

答案1

您可以在此处找到所有 XF86 键的定义:http://cgit.freedesktop.org/xorg/proto/x11proto/tree/XF86keysym.h(或者安装在您的系统上/usr/include/X11/XF86keysym.h,如果您安装了x11proto-core-dev

要从终端运行它,只需安装xdotool

sudo apt-get install xdotool

并运行:

xdotool key XF86AudioRaiseVolume

相关内容