blob: 23e13b6cb3dd567b257520b2c7dd85a575c6b2f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo ">>> Equibop installed successfully."
echo ">>> Launch with: equibop"
update-desktop-database -q
# Refresh icon cache so the launcher and taskbar pick up the new icon
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor || true
fi
}
post_upgrade() {
post_install
}
|