sudo apt install xbindkeys xautomation
xbindkeys --defaults > $HOME/.xbindkeysrc
xev | grep button
lindorx@lindorx-PC:~$ xev | grep button
state 0x0, button 9, same_screen YES
state 0x0, button 9, same_screen YES
state 0x0, button 8, same_screen YES
state 0x0, button 8, same_screen YES
编辑刚才的配置文件.xbindkeysrc,在最后加入下面的代码,表示9号被单击向上翻页,8号被单击向下翻页:
# up-key button of mouse
"xte 'key Page_Up' "
b:9
# down-key button of mouse
"xte 'key Page_Down' "
b:8
killall xbindkeys
xbindkeys -f .xbindkeysrc
注:如果单击鼠标侧键终端没有输出,可能是xbindkeys正在运行中,使用“killall xbindkeys”杀死进程再尝试