Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIXED to mumble-server migration #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions mic_over_mumble
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ stop_murmur_client () {

start_mumble_server () {
echo "Starting Mumble server (murmurd)..."
murmurd -ini ./murmur.ini &
mumble-server -ini ./murmur.ini &
# Murmur forks, so the PID acquired by `$!`
# wouldn't help us much.
sleep 5
Expand All @@ -84,7 +84,7 @@ start_mumble_server () {
stop_murmur_server () {
echo "Stopping Mumble server..."
# FIXME: find a better way to kill Murmur.
pkill murmurd || true
pkill mumble-server || true
}

change_pa_config () {
Expand Down Expand Up @@ -222,7 +222,7 @@ print_ip () {
print_how_to_restart () {
echo "Please find the reason why this happened, try fixing it"
echo "(\`pacmd list-sink-inputs\` and \`pacmd list-sinks\` may be"
echo "useful), then kill mumble and murmurd, restart PulseAudio via"
echo "useful), then kill mumble and mumble-server, restart PulseAudio via"
echo "\`pulseaudio -k\`, and finally, restart the script."
}

Expand Down