blob: 59e1d70124676842b5bc81bfbfebf3f6692a2613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_upgrade() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
update-mime-database usr/share/mime &> /dev/null
}
post_install() {
echo "You should at least install one of kcm-fcitx (For Qt/KDE users) or fcitx-configtool (For GTK+ users) to enable Fcitx configuration GUI."
post_upgrade
}
post_remove() {
post_upgrade
}
|