fix mkessler-x post-install hook (unexpected EOF)

This commit is contained in:
Maximilian Keßler 2022-07-25 22:22:25 +02:00
parent 3d862aaf05
commit eac38f26da
2 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
pkgbase=mkessler
pkgname=(mkessler-base mkessler-xmonad mkessler-x mkessler-audio mkessler-software mkessler-print mkessler-locale mkessler-desktop mkessler-devel mkessler-signing-key)
pkgver=0.8
pkgver=0.9
pkgrel=1
pkgdesc="Base system configuration for mkessler systems"
arch=('any')

View File

@ -1,13 +1,13 @@
post_install() {
cat <<EOF > /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" "de"
Option "XkbVariant" "neo"
EndSection
EOF
# 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" "de"
Option "XkbVariant" "neo"
EndSection
EOF
}