我使用 xmonad 并用 xmodmap 更改了我的键盘以使用我的 alt gr 键作为选项卡。
我将我的 Super_L 移动到 tab 键,这是我的 xmonad 的 modm 键。
它在其他应用程序中运行良好,但不适用于 firefox 或 Thunderbird。这两个应用程序只是忽略了 altgr press。
我在安全模式下尝试了firefox,但问题仍然存在。
我使用 xmonad 并用 xmodmap 更改了我的键盘以使用我的 alt gr 键作为选项卡。
我将我的 Super_L 移动到 tab 键,这是我的 xmonad 的 modm 键。
它在其他应用程序中运行良好,但不适用于 firefox 或 Thunderbird。这两个应用程序只是忽略了 altgr press。
我在安全模式下尝试了firefox,但问题仍然存在。
我有同样的问题,并在这里找到了答案:
添加:
Option "XkbVariant" "intl"
到 /etc/X11/xorg.conf.d/10-evdev.conf
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbModel" "asus_laptop"
Option "XkbVariant" "intl"
Option "XkbLayout" "us"
EndSection
我使用debian
并遇到了同样的问题。我的 macbook 没有alt-gr
,所以我将apple-r
(Super-R)设置为 ISO-Level3-Shift(我也尝试了 Mode_switch),它适用于除 Firefox 之外的所有应用程序。
"dpkg-reconfigure keyboard-configuration"
选择对我有用...
也许有人找到了问题的根源,并且知道如何解决它......