<div dir="ltr"><div dir="ltr">Apologies -- yes I should not have included that first line. My own insecurities I guess in the fact that it's probably searchable, but I couldn't find anything in the qjackctl interface that would do it, so it's my issue.<br></div><div dir="ltr"><br></div><div>thanks for the pointer about aj-snapshot -- will be checking that out later.<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Feb 15, 2019 at 8:28 PM Ralf Mardorf <<a href="mailto:ralf.mardorf@alice-dsl.net">ralf.mardorf@alice-dsl.net</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Fri, 15 Feb 2019 13:00:10 +0000, Jonty Needham wrote:<br>
>This is a real n00b question, so I apolgise in advance.<br>
<br>
This does speak volumes about Linux {,audio} mailing lists :(.<br>
<br>
>I am struggling with saving my connections and setup through reboots<br>
>etc using qjackctl, and a host of synths (Zyn, Hydrogen, QSynth) as<br>
>well as Ardour. How do I make it all link together in the correct way<br>
>when I start my project again?<br>
<br>
For this kind of Linux audio sessions I recommend to write a script<br>
that just loads one app after and just in case after killing them and<br>
then to restores all or at least almost all connections using<br>
<a href="http://aj-snapshot.sourceforge.net/" rel="noreferrer" target="_blank">http://aj-snapshot.sourceforge.net/</a>,<br>
<a href="https://www.archlinux.org/packages/community/x86_64/aj-snapshot/" rel="noreferrer" target="_blank">https://www.archlinux.org/packages/community/x86_64/aj-snapshot/</a><br>
<a href="https://packages.ubuntu.com/cosmic/aj-snapshot" rel="noreferrer" target="_blank">https://packages.ubuntu.com/cosmic/aj-snapshot</a><br>
<a href="https://tracker.debian.org/pkg/aj-snapshot" rel="noreferrer" target="_blank">https://tracker.debian.org/pkg/aj-snapshot</a>.<br>
<br>
A simple script:<br>
<br>
#!/bin/bash<br>
killall -9 qjackctl app_1 app_n jackd<br>
jackd --sync -Xalsarawmidi -dalsa -r48000 -p256 #or any other parameters and values<br>
sleep 2<br>
app_1 &<br>
sleep 2<br>
app_n &<br>
sleep 2<br>
qjackctl & #might also be used to auto-restore connections, so it's better to first start jackd or jackdbus,<br>
           #followed by the apps, followed by the DAW (Ardour), which also might restore connections,<br>
           #followed by qjackctl and aj-snapshot<br>
sleep 2<br>
aj-snapwrap -rx /path/to/snapshot.ajs<br>
exit<br>
<br>
The "&" as well as "sleep" might not be required, but could be helpful.<br>
_______________________________________________<br>
Linux-audio-user mailing list<br>
<a href="mailto:Linux-audio-user@lists.linuxaudio.org" target="_blank">Linux-audio-user@lists.linuxaudio.org</a><br>
<a href="https://lists.linuxaudio.org/listinfo/linux-audio-user" rel="noreferrer" target="_blank">https://lists.linuxaudio.org/listinfo/linux-audio-user</a><br>
</blockquote></div></div>