diff options
author | David Runge <david.runge@frqrec.com> | 2014-11-30 18:29:55 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2014-11-30 18:29:55 +0100 |
commit | 28964984f188434352a327a3fcc99d6f050ed2a1 (patch) | |
tree | 1710babffab76b7651c2120e60e3090306275157 /bin | |
parent | c14c4628706d1264f329b339ad385d8ad16da595 (diff) | |
download | dotfiles-28964984f188434352a327a3fcc99d6f050ed2a1.tar.gz dotfiles-28964984f188434352a327a3fcc99d6f050ed2a1.tar.bz2 dotfiles-28964984f188434352a327a3fcc99d6f050ed2a1.tar.xz dotfiles-28964984f188434352a327a3fcc99d6f050ed2a1.zip |
start_jack: Added disabling of pulseaudio before starting jack, as it breaks system audio when using USB-MIDI interfaces.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/start_jack | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/start_jack b/bin/start_jack index 0c99aab..dfd6e4f 100755 --- a/bin/start_jack +++ b/bin/start_jack @@ -25,9 +25,11 @@ case "$HOSTNAME" in DEVICE="/dev/fw1" # 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 schedtool -R -p 20 `pidof jackdbus` +# sudo /usr/bin/schedtool -R -p 20 `pidof jackdbus` jack_control eps realtime true jack_control ds firewire jack_control dps device $DEVICE @@ -36,7 +38,7 @@ case "$HOSTNAME" in jack_control dps period 256 sleep 3 a2jmidid -e & - sudo schedtool -R -p 20 `pidof a2jmidid` +# sudo /usr/bin/schedtool -R -p 20 `pidof a2jmidid` rm ~/.config/SuperCollider/startup.scd ln -s ~/.config/SuperCollider/startupfiles/electronicStudio.scd ~/.config/SuperCollider/startup.scd -v else |