blob: ab2a660f3a2b18b50c32d102fac5f1cb21013cc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
whisperer(){
echo "----------------------------------------------------------------"
echo "Don't forget that this is an alpha release of AppSet-Qt."
echo "You can test it but it is not recommended for use every day"
echo "----------------------------------------------------------------"
echo "AppSet is in your desktop menu under Applications->System"
echo "To launch AppSet from shell run 'appset-launch.sh' as normal"
echo "user."
echo "----------------------------------------------------------------"
echo "----------------------------------------------------------------"
echo "IMPORTANT: NOW YOU NEED TO REBOOT YOUR COMPUTER TO LET APPSET"
echo "WORKING AT ITS BEST"
echo "----------------------------------------------------------------"
echo "----------------------------------------------------------------"
}
post_install(){
whisperer
}
post_upgrade(){
whisperer
}
|