blob: 77fc5404e5d9fc30a4fa80294f775ca32d17d6d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "==> To use Mixbus, you need to be in the 'audio' group:"
echo "==> sudo usermod -a -G audio \$USER"
echo "==> You may need to log out and back in for the group changes to take effect"
echo "==> Launch Mixbus from the applications menu or by typing 'Mixbus10' in terminal"
}
post_upgrade() {
post_install
}
post_remove() {
echo "==> Mixbus has been removed from your system"
}
|