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 pkgbase=mkessler
pkgname=(mkessler-base mkessler-xmonad mkessler-x mkessler-audio mkessler-software mkessler-print mkessler-locale mkessler-desktop mkessler-devel mkessler-signing-key) 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 pkgrel=1
pkgdesc="Base system configuration for mkessler systems" pkgdesc="Base system configuration for mkessler systems"
arch=('any') arch=('any')

View file

@ -1,13 +1,13 @@
post_install() { post_install() {
cat <<EOF > /etc/X11/xorg.conf.d/00-keyboard.conf cat <<EOF > /etc/X11/xorg.conf.d/00-keyboard.conf
# Written by systemd-localed(8), read by systemd-localed and Xorg. It's # 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 # probably wise not to edit this file manually. Use localectl(1) to
# instruct systemd-localed to update it. # instruct systemd-localed to update it.
Section "InputClass" Section "InputClass"
Identifier "system-keyboard" Identifier "system-keyboard"
MatchIsKeyboard "on" MatchIsKeyboard "on"
Option "XkbLayout" "de" Option "XkbLayout" "de"
Option "XkbVariant" "neo" Option "XkbVariant" "neo"
EndSection EndSection
EOF EOF
} }