mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
20 lines
475 B
Text
20 lines
475 B
Text
post_install()
|
|
{
|
|
echo -e "\nThank you for choosing blindpaste"
|
|
echo -e "For a better experience with this software, consider adding the line\n"
|
|
echo -e "\t\033[1;36malias bp='blindpaste'\033[0m\n"
|
|
echo -e "to the bottom of ~/.bashrc\n"
|
|
}
|
|
|
|
post_upgrade()
|
|
{
|
|
post_install
|
|
}
|
|
|
|
post_remove()
|
|
{
|
|
echo -e "\nThank you for using blindpaste"
|
|
echo -e "Don't forget to remove the line\n"
|
|
echo -e "\t\033[1;36malias bp='blindpaste'\033[0m\n"
|
|
echo -e "from ~/.bashrc\n"
|
|
}
|