desktop/tools-pkg-appset-qt/appset-qt.install
2011-05-10 09:17:40 +00:00

32 lines
735 B
Plaintext

whisperer(){
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. To launch the tray type appsettray-qt as normal user."
echo "----------------------------------------------------------------"
}
mr_daemon(){
angel=$(grep ^DAEMONS /etc/rc.conf | grep appset-helper)
if [ "$angel" = "" ]; then
sed -i '/^DAEMONS/{s/)$/ appset-helper)/}' /etc/rc.conf
fi
}
post_install(){
mr_daemon
whisperer
}
post_upgrade(){
mr_daemon
whisperer
}
post_remove(){
sed -i '/^DAEMONS/{s/ appset-helper)$/)/}' /etc/rc.conf
}