Mouse

xbindkeys && xdotool => 自發禁用滑鼠按鈕

  • January 7, 2015

我有羅技 G500s 滑鼠,並通過 xbindkeys && xdotool 配置額外的按鈕。

# Scroll Left = "previous Tab" in Browser
"xdotool key Ctrl+Tab"
b:7

# Scroll right = "next Tab" in Browser
"xdotool key Ctrl+Shift+Tab"
b:6

"xdotool key Alt+Left"
b:8

"xdotool key Alt+Right"
b:9

#Present Windows
"xdotool key F5"
b:10

但有時按鈕 6 和 7 停止工作,直到我執行xinput test <mouse id> 我可以使用哪些工具來診斷問題?

可能的問題是 xdotool。我切換到 xmacro 並且所有按鈕都可以正常工作。

引用自:https://unix.stackexchange.com/questions/165886