From 4d9885328da63216f8f5f9b312c2400fc0a6b704 Mon Sep 17 00:00:00 2001 From: eshanized Date: Wed, 1 Jan 2025 03:25:20 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20feat:=20add=20xkb=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archiso/airootfs/etc/X11/xorg.conf.d/00-keyboard.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 archiso/airootfs/etc/X11/xorg.conf.d/00-keyboard.conf diff --git a/archiso/airootfs/etc/X11/xorg.conf.d/00-keyboard.conf b/archiso/airootfs/etc/X11/xorg.conf.d/00-keyboard.conf new file mode 100644 index 0000000..9ea470f --- /dev/null +++ b/archiso/airootfs/etc/X11/xorg.conf.d/00-keyboard.conf @@ -0,0 +1,10 @@ +# 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 +# update this file. +Section "InputClass" + Identifier "system-keyboard" + MatchIsKeyboard "on" + Option "XkbLayout" "us" + Option "XkbModel" "pc105+inet" + Option "XkbOptions" "terminate:ctrl_alt_bksp" +EndSection