Initial commit

This commit is contained in:
Christian Schendel 2025-09-03 21:01:04 +02:00
commit 2b897ca277
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
9 changed files with 295 additions and 0 deletions

13
pamac.install Normal file
View file

@ -0,0 +1,13 @@
post_install() {
# enable pamac extension
printf '==> Enable Pamac Updates Indicator via\n'
printf ' Extensions\n'
}
post_upgrade() {
if [[ ! "gsettings get org.gnome.shell enabled-extensions | grep 'pamac-updates'" ]]; then
# enable pamac extension
printf '==> Enable Pamac Updates Indicator via\n'
printf ' Extensions\n'
fi
}