blob: 2c59ce59db81db415dc5bbdc4bfc238d7485acad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo ""
echo "Activate tirith by adding to your shell profile:"
echo ""
echo " zsh (~/.zshrc): eval \"\$(tirith init --shell zsh)\""
echo " bash (~/.bashrc): eval \"\$(tirith init --shell bash)\""
echo " fish (~/.config/fish/config.fish): tirith init --shell fish | source"
echo ""
echo "Then restart your terminal. Verify: tirith doctor"
echo ""
}
post_upgrade() {
post_install
}
|