Solved FluxBox: FreeBSD 13.0 - Polish fonts and keyboard

How to set Polish keyboard

Polish keyboard layout can be set with x11/setxkbmap, when Fluxbox is started, automatic executed from ~/.config/fluxbox/startup for example, or set it from a xorg configuration file, i.e.:

/usr/local/etc/X11/xorg.conf.d/keyboard.conf
Code:
Section "InputClass"
    Identifier    "All Keyboards"
    MatchIsKeyboard    "yes"
    Option        "XkbLayout" "pl"
EndSection

and Polish fonts (ą ć ę ł ó ż ź)
Press the AltGr key to print them.
 
If you want the Polish QWERTZ keyboard, with the ż,ś,ł,ą,ó keys on the right: $ setxkbmap pl qwertz
You can also set this in ~/.xinitrc (or ~/.xsession if you use XDM).
 
Back
Top