在本教程之后,我想将鼠标的前页按钮(即b:9)映射到Shift_L。然而,使用工具xte和xbinkeys的按钮向下工作,但按钮发布没有.使用xte本身,按下按钮和-release工作.所以它必须对我的~/.xbindkeys做些什么。
~/.xbindkeys的内容:
# Page forward press
"xte 'keydown Shift_L'"
b:9
# Page forward release
"xte 'keyup Shift_L'"
b:9 + Release发布于 2019-07-22 04:32:07
您需要添加到发行版中(因为当mb9关闭时会按shift键):
# Press shift with your mouse button 9:
"xte 'keydown Shift_L'"
b:9
# Release shift with your mouse button 9 + shift
"xte 'keyup Shift_L'"
Shift+Mod2+Shift_L + b:9 + Release发布于 2023-05-25 14:41:28
我试图捕捉Super_L版本,但直到邓肯的回应才能实现。按键捕获通过: Super_L
通过: m:0x40 + Super_L +版本捕获的密钥发布
https://askubuntu.com/questions/1115600
复制相似问题