blob: 21b6ae6889f6852a6a7c8a54afd5b708a3c71d6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo ""
echo "==> TOKENICODE installed successfully!"
echo "==> For fcitx5 input method support, install fcitx5-gtk:"
echo " pacman -S fcitx5-gtk"
echo ""
echo "==> Note: On Wayland, the launcher defaults to X11 backend"
echo " for better input method compatibility."
echo " Set GDK_BACKEND=wayland to override."
echo ""
}
post_upgrade() {
post_install
}
|