blob: 7c35c018ec2ba86f6826c73b65de40f51a1ff9c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
info() {
echo -e "\033[0;34m============================INFO==============================="
echo -e "* To apply changes to current user, run:"
echo -e " > cp /etc/zsh/zshrc ~/.zshrc"
echo -e "* To configure the theme:"
echo -e " Edit line 2, ~/.zshrc, and replace default theme file path with your target theme file path."
echo -e "* Key bindings info:"
echo -e " Up: History substring search(backward)"
echo -e " Down: History substring search(forward)"
echo -e " Ctrl-Up: History beginning search(backward)"
echo -e " Ctrl-Down: History beginning search(forward)"
echo -e " Ctrl-Left: Skip a whole word(left)"
echo -e " Ctrl-Right: Skip a whole word(right)"
echo -e "====================================================================\033[0m"
}
post_install() {
info
}
post_upgrade() {
info
}
|