blob: 63104cca6ba1d35b7621069c48ef48a65069fdf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo -e "\033[1;31m###################################################################"
echo -e "\nTo enable this input scheme, you should edit the 'default.custom.yaml' file\n in the user configuration directory(/usr/share/rime-data/). For example:\n"
echo -e "\tpatch:"
echo -e "\t schema_list:"
echo -e "\t - schema: flypy"
echo -e "\t - schema: clover"
echo -e "\n\033[1;31m#########And don't forget to Redeploy rime to take effect.#########\033[0m"
echo -e "\033[1;31m###################################################################\033[0m"
}
post_upgrade() {
echo -e "\033[1;31m###################################################################\033[0m"
echo -e "\033[1;31m# Please redeploy rime to take effect. #\033[0m"
echo -e "\033[1;31m###################################################################\033[0m"
}
|