aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-12-01 01:42:46 +0100
committerDavid Runge <david.runge@frqrec.com>2014-12-01 01:42:46 +0100
commitd3ff462e2975ac812a531ff371291388a546cdde (patch)
tree9009a65c71c9d8367d1dd782e2c88f65af56bf92 /bin
parentc75d96166e8f6dfc30923f689b45ec327b071385 (diff)
downloaddotfiles-d3ff462e2975ac812a531ff371291388a546cdde.tar.gz
dotfiles-d3ff462e2975ac812a531ff371291388a546cdde.tar.bz2
dotfiles-d3ff462e2975ac812a531ff371291388a546cdde.tar.xz
dotfiles-d3ff462e2975ac812a531ff371291388a546cdde.zip
start_jack/stop_jack: Removing stop and start of pulseaudio. Doing it manually definitely gets around issues with USB-MIDI devices.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/start_jack1
-rwxr-xr-xbin/stop_jack1
2 files changed, 0 insertions, 2 deletions
diff --git a/bin/start_jack b/bin/start_jack
index dfd6e4f..b6c3660 100755
--- a/bin/start_jack
+++ b/bin/start_jack
@@ -26,7 +26,6 @@ case "$HOSTNAME" in
# TODO: Add settings from separate config file
if [[ -e $DEVICE && -r $DEVICE && -w $DEVICE ]]; then
echo "Stopping pulseaudio"
- systemctl --user stop pulse
echo "Setting up "$DEVICE" with JACK."
jack_control start
# sudo /usr/bin/schedtool -R -p 20 `pidof jackdbus`
diff --git a/bin/stop_jack b/bin/stop_jack
index 786f16a..f07b6be 100755
--- a/bin/stop_jack
+++ b/bin/stop_jack
@@ -4,7 +4,6 @@ jack_control stop
sleep 3
jack_control exit
-systemctl --user start pulse
exit 0