On Wed, 5 Jul 2023 16:42:15 -0400
Alan Grimes <[email protected]> wrote:
> I need a way to get X11 to boot into dvorak layout mode without having
> to look up this e-mail to find the command to set the layout to dvorak.
>
> My current xorg.conf has: but does not do anything useful.
>
> Section "InputDevice"
> # generated from default
> Identifier "Keyboard0"
> Driver "keyboard"
> Option "XkbLayout" "us"
> Option "XkbVariant" "dvorak"
> EndSection
>
>
> Michael wrote:
> > setxkbmap -layout us -variant dvorak
>
I have this in my config file:
Section "InputClass"
Identifier "Keyboard"
Driver "libinput"
MatchIsKeyboard "on"
Option "xkbmodel" "evdev"
Option "xkblayout" "us"
Option "xkbvariant" "altgr-intl"
Option "xkbrules" "evdev"
Option "xkboptions" "nodeadkeys"
EndSection
Maybe it helps.