blob: 866916038c7a0c1dd29fcb27cfc5a5d65beb6ea2 (
plain)
1
2
3
4
5
6
7
|
post_install() {
echo ">>> Don't forget to add \`source /usr/share/undistract-me/long-running.bash;notify_when_long_running_commands_finish_install\` to your ~\.bashrc or ~\.zshrc"
echo ">>> You can do this automatically via the following command:"
printf ">>> echo -e \"source /usr/share/undistract-me/long-running.bash\\\nnotify_when_long_running_commands_finish_install\" >> ~\.bashrc\n"
echo ">>> Or (for zsh):"
printf ">>> echo -e \"source /usr/share/undistract-me/long-running.bash\\\nnotify_when_long_running_commands_finish_install\" >> ~\.zshrc\n"
}
|