diff options
author | David Runge <david.runge@frqrec.com> | 2014-12-01 01:42:46 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2014-12-01 01:42:46 +0100 |
commit | d3ff462e2975ac812a531ff371291388a546cdde (patch) | |
tree | 9009a65c71c9d8367d1dd782e2c88f65af56bf92 | |
parent | c75d96166e8f6dfc30923f689b45ec327b071385 (diff) | |
download | dotfiles-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.
-rwxr-xr-x | bin/start_jack | 1 | ||||
-rwxr-xr-x | bin/stop_jack | 1 |
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 |