xorgで新しいキーボードレイアウトを作成するには?

xorgで新しいキーボードレイアウトを作成するには?

私はポーランド語のレイアウトを使用しますが、端末でAltGr(私の場合は)+を使用するとright Alt+ -と同じように印刷されます。bAltGrgrfæ

私は使用する:

  • Fedora Workstation 37
  • 到来の牙
  • パルス幅変調
  • Lenovo A485

マッピングせずに新しいæレイアウトを作成しました

    $ sudo cp /usr/share/X11/xkb/symbols/pl /usr/share/X11/xkb/symbols/custom_pl
    $ sudo nvim /usr/share/X11/xkb/symbols/custom_pl
    -- Before --
        key <AC04>  { [         f,          F,           ae,           AE ] };
    ...
        key <AB05>  { [         b,          B, rightdoublequotemark, leftdoublequotemark ] };
    -- Before --

    -- After --
            key <AC04>  { [         f,          F,           ,            ] };
        ...
            key <AB05>  { [         b,          B, ,  ] };
    -- After --

追加するcustom_pl/usr/share/X11/xkb/rules/xorg.lst

...
  no              Norwegian
  pl              Polish
  custom_pl       Polish (Good to bash shortcuts)
  pt              Portuguese
  ro              Romanian
...

そして/usr/share/X11/xkb/rules/xorg.xml

    <layout>
      <configItem>
        <name>custom_pl</name>
        <!-- Keyboard indicator for Polish with normal linux shourtcut layouts -->
        <shortDescription>custom_pl</shortDescription>
        <description>Polish</description>
        <countryList>
          <iso3166Id>PL</iso3166Id>
        </countryList>
        <languageList>
          <iso639Id>pol</iso639Id>
        </languageList>
      </configItem>
      <variantList>
        <variant>
          <configItem>
            <name>legacy</name>
            <description>Polish (legacy)</description>
          </configItem>
        </variant>
      </variantList>
    </layout>

新しいレイアウトを追加xorg.conf.d

 $ sudo nvim /etc/X11/xorg.conf.d/00-keyboard.conf
# Written by systemd-localed(8), read by systemd-localed and Xorg. It's
# probably wise not to edit this file manually. Use localectl(1) to
# instruct systemd-localed to update it.
Section "InputClass"
        Identifier "system-keyboard"
        MatchIsKeyboard "on"
        Option "XkbLayout" "custom_pl, ua"
        Option "XkbModel" "pc105+inet"
        Option "XkbOptions" "grp:alt_shift_toggle"
EndSection

コンピュータを再起動します。エラーがあります。

$ localectl set-keymap custom_pl                                                                       
    Failed to set keymap: Keymap custom_pl is not installed.
$ setxkbmap custom_pl
Error loading new keyboard description

私は試した: https://michal.kosmulski.org/computing/articles/custom-keyboard-layouts-xkb.html https://discussion.fedoraproject.org/t/how-to-define-custom-keyboard-mappings-under-fedora-silverblue/77368

何もありません。まだcustom_plレイアウトはありません。助けてください?

ベストアンサー1

おすすめ記事