Linux에 "클릭"에 대한 입력 이벤트 코드가 있습니까?

Linux에 "클릭"에 대한 입력 이벤트 코드가 있습니까?

Logitech MX Anywhere를 구성하고 있습니다.로지옵스Ctrl+ClickWindows에서 마우스를 사용할 때 브라우저의 새 탭에서 링크를 빠르게 열 수 있도록 버튼 중 하나를 매핑한 적이 있는 것을 기억합니다 .

지금구성 파일이 프로그램에서는 사용자가 이름으로 키 시퀀스를 말해야 하기 때문에이벤트 코드를 입력하세요. "CLICK"을 검색해 보았지만 단 하나뿐이었고 SND_CLICK이것은 확실히 그 것이 아닙니다(특히 에 있는 경우).파일).

전문가는 아니지만 기대가 됩니다아니요"클릭" 이벤트 코드가 있습니다. 제가 추론할 수 있는 한 목록은 실제 이벤트에만 관련이 있습니다.물리적키보드에서 사용할 수 있는 키입니다. 하지만 그렇다면 입력 이벤트 코드를 통해 내가 원하는 것과 유사한 동작을 달성할 수 있는 다른 방법이 있습니까?


편집하다

~에 따르면월터 나토의제안된 대로 xev -event button -event keyboard누르면 실행하면 다음과 같은 출력이 제공됩니다 Ctrl+Click.

KeyPress event, serial 28, synthetic NO, window 0x8600001,
    root 0xdd, subw 0x0, time 23492174, (68,103), root:(1752,593),
    state 0x10, keycode 37 (keysym 0xffe3, Control_L), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

ButtonPress event, serial 28, synthetic NO, window 0x8600001,
    root 0xdd, subw 0x0, time 23492917, (68,103), root:(1752,593),
    state 0x14, button 1, same_screen YES

ButtonRelease event, serial 28, synthetic NO, window 0x8600001,
    root 0xdd, subw 0x0, time 23492965, (68,103), root:(1752,593),
    state 0x114, button 1, same_screen YES

KeyRelease event, serial 28, synthetic NO, window 0x8600001,
    root 0xdd, subw 0x0, time 23493501, (68,103), root:(1752,593),
    state 0x14, keycode 37 (keysym 0xffe3, Control_L), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

관련 정보