chore(users): add post installation script!

This commit is contained in:
Eshan Roy (Eshanized)
2024-05-02 11:30:13 +05:30
parent 248ea67178
commit 353fb4f4bf
2 changed files with 8 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ license=("MIT")
depends=('snigdhaos-tabliss-config' 'waterfox-bin' 'profile-sync-daemon')
source=("psd.conf"
"$pkgname.tar.gz")
install="${pkgname}.install"
package() {
install -dm 755 "${pkgdir}/etc/skel"

View File

@@ -0,0 +1,7 @@
post_install() {
echo -e "\n** The files have been installed in /etc/skel/.waterfox/ **\n"
}
post_upgrade() {
post_install
}