From 799d52a30d48e089e531038ef250774b75ca6ce6 Mon Sep 17 00:00:00 2001 From: geens Date: Tue, 12 Aug 2025 16:09:21 +0200 Subject: [PATCH] Added autorun script --- autorun.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 autorun.sh diff --git a/autorun.sh b/autorun.sh new file mode 100644 index 0000000..1aeeb9b --- /dev/null +++ b/autorun.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +git stash +git pull + +qjackctl /start-server & +JACK_PID=$! + +cargo run --release audio_engine & +AUDIO_ENGINE_PID=$! + +cargo run --release gui & +GUI_PID=$! \ No newline at end of file