Stuff working well with a single 3-pin range finder. FossilOrigin-Name: 483d8caaef350827c026d7c234b026e9e720d26a7e27e54b0436f60b099a0ab9
12 lines
226 B
Bash
Executable file
12 lines
226 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Run fluidsynth as a server, with some more dedicated CPU "oomph".
|
|
#
|
|
|
|
exec 2>&1
|
|
exec fluidsynth -v -n -i -s \
|
|
-a alsa -c2 -z1024 \
|
|
-o synth.cpu-cores=4 \
|
|
-o audio.realtime-prio=95 \
|
|
-o audio.alsa.device=hw:0
|
|
|