If using a WM like me, you’ll need to add something like setxkbmap -option compose:ralt to your startup commands in your config.
Instead of adding it to startup commands, it’s also possible to add it to the Xorg configuration. I use a file /etc/X11/xorg.conf.d/10-keyboard.conf with the contents:
Instead of adding it to startup commands, it’s also possible to add it to the Xorg configuration. I use a file
/etc/X11/xorg.conf.d/10-keyboard.conf
with the contents:Section "InputClass" Identifier "keyboard-all" MatchIsKeyboard "on" Option "XkbOptions" "compose:caps" EndSection
to enable the compose key.
Oh, thanks, didn’t know about that.