私はFedora 28 gnomeデスクトップインターフェースを使用しています。しばらく前に間違って右Ctrlキーをキーの組み合わせに設定します。
したがって、再起動するたびにrctrl
右のCtrlキー()が無効になります。たとえば、CLIで作業している場合、rctrl + Aはカーソルをプロンプト行の先頭に移動しないか、rctrl + Wは不要なプログラムを閉じません。 MozFirefoxのタブ。setxkbmap -query
生産する
rules: evdev
model: pc105
layout: it,it
variant: ,
options: compose:rctrl
手動で設定を解除または無効にする必要があるたびに再起動したsetxkbmap -option
後compose:rctrl
。
変更を永久に適用するために編集できるファイルはありますか?
/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" "it"
Option "XkbModel" "pc105"
EndSection
/etc/vconsole.conf ファイルの内容
KEYMAP=it
FONT=eurlatgr
答え1
答え2
必要なコマンドはですlocalectl
。
現在のテストではFedora 28はありませんが、コマンド構文は次のとおりです。
localectl set-x11-keymap <layout> [model [variant [options]]]
私は命令が次のようになるべきだと思います。
localectl set-x11-keymap it pc105
バリアントとオプションスロットを空白のままにすると、既存のバリアント/オプション設定が削除されます。
これらの設定は/etc/vconsole.conf
コンソールと/etc/X11/xorg.conf.d/00-keyboard.conf
X11 GUIに保存できます。 Waylandについて何も知りませんが、localectl
コマンドはすべてを処理します。