blob: 30723a67e9834160450f0f02a00db939d541684a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo "Remember to delete the official (non-tweaked) launcher by using:"
echo "rm ~/.local/share/applications/telegramdesktop.desktop"
echo "After running Telegram Desktop"
}
post_upgrade() {
post_install
}
post_remove() {
post_install
echo "Also, you can remove old data from a terminal doing:"
echo "rm -r ~/.TelegramDesktop"
}
|