blob: e14f0cf62bcfea3e79250d40baa9afb0fa59e738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo -e "\033[1;31m###################################################################\033[0m"
echo -e "\nPlease enable this input scheme through the 'default.custom.yaml' file\n in the user configuration directory. 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 "\nPlease redeploy rime to take effect.\n"
echo -e "\033[1;31m###################################################################\033[0m"
}
|