mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
16 lines
487 B
Text
16 lines
487 B
Text
post_install() {
|
|
|
|
echo "==> To launch bluemote, you'll need to create the directory ~/.bluemote"
|
|
echo "==> and copy /etc/bluemote/bluemote.cfg to ~/.bluemote/bluemote.cfg."
|
|
echo "==> Edit that file to your liking (more info in /etc/bluemote/config.txt."
|
|
echo "==> Bluemote will not start if the directory and the config file do not exist."
|
|
echo "==> Add your user to the "tty" group in order to have access to /dev/rfcomm0"
|
|
}
|
|
|
|
post_upgrade() {
|
|
groupdel bluetooth
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|