summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-09-07 23:31:45 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-09-07 23:31:45 +0200
commit7f6847ce132060ca3fe8961db53eaa24aa770223 (patch)
tree347762e28c633fae3309808380482d84ae92cf0c
parenta57164e0ad8a064c27b92c4d6c56cd169349cf05 (diff)
downloaddigitale-debutanten-7f6847ce132060ca3fe8961db53eaa24aa770223.tar.gz
kill possible running jack.scope and alsa_in/alsa_out instances on startup
-rwxr-xr-xstart_chuck5
1 files changed, 5 insertions, 0 deletions
diff --git a/start_chuck b/start_chuck
index 041b9a2..d7a8410 100755
--- a/start_chuck
+++ b/start_chuck
@@ -1,5 +1,10 @@
#!/bin/sh
+# kill possibly running stuff
+pkill alsa_in
+pkill alsa_out
+pkill jack.scope
+
# USB sound card JACK ports
alsa_in -d hw:default -c 1 -q 0 >/dev/null &
alsa_out -d hw:default -c 2 -q 0 >/dev/null &