Initial commit

This commit is contained in:
Christian Schendel 2025-09-01 05:10:21 +02:00
commit 571395f63e
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
9 changed files with 177 additions and 0 deletions

14
dalci-keyring.install Normal file
View file

@ -0,0 +1,14 @@
post_upgrade() {
if usr/bin/pacman-key -l >/dev/null 2>&1; then
usr/bin/pacman-key --populate dalci
else
echo " >>> Run \`pacman-key --init\` to set up your pacman keyring."
echo " >>> Then run \`pacman-key --populate dalci\` to install the dalci keyring."
fi
}
post_install() {
if [ -x usr/bin/pacman-key ]; then
post_upgrade
fi
}