我知道我需要 xmodmap 并且一直在尝试它但找不到正确的配置。
➜ ~ xmodmap
xmodmap: up to 3 keys per modifier, (keycodes in parentheses):
shift Shift_L (0x32), Shift_R (0x3e)
lock Caps_Lock (0x42)
control Control_L (0x25), Control_R (0x69)
mod1 Alt_L (0x40), Alt_R (0x6c), Meta_L (0xcd)
mod2 Num_Lock (0x4d)
mod3
mod4 Super_R (0x86), Hyper_L (0xcf)
mod5 ISO_Level3_Shift (0x5c), Mode_switch (0xcb)
这是 XF86Explorer 密钥
➜ ~ xev
KeyPress event, serial 40, synthetic NO, window 0x6e00001,
root 0x7d, subw 0x0, time 4306448, (-253,-217), root:(592,324),
state 0x0, keycode 152 (keysym 0xffeb, Super_L), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 40, synthetic NO, window 0x6e00001,
root 0x7d, subw 0x0, time 4306598, (-253,-217), root:(592,324),
state 0x40, keycode 152 (keysym 0xffeb, Super_L), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
我的键盘没有超级按钮,这就是为什么我想让资源管理器按钮充当我的超级按钮。
答案1
打开文件
~/.Xmodmap
nano ~/.Xmodmap
放置您的映射,例如:
keycode 152 = Super_L
测试一下
xmodmap ~/.Xmodmap
打开文件
~/.xinitrc
nano ~/.xinitrc
添加以下行
if [ -s ~/.Xmodmap ]; then xmodmap ~/.Xmodmap fi
注销并重新登录
如果~/.xinitrc
不起作用则使用~/.profile
步骤 4 并重复步骤 5。