Fork me on GitHub
#overtone
<
2024-03-21
>
plexus04:03:21

What OS are you on @larstvei?

larstvei07:03:05

Sorry, macOS.

plexus14:03:22

then I have no idea, sorry

larstvei15:03:58

Thanks for trying :)

plexus18:03:45

This is really a supercollider question, on Linux we make the connections, on mac we let supercollider do it

👍 1
bobby.harris21:03:01

I'm on mac too and i have to restart supercollider everytime i switch... btw, i understand the latest upgrade to macos cripples the jdk so you might postpone.

plexus04:03:48

If on linux you can do something like this

(require [casa.squid.jack :as jack])

(jack/ports @jack/default-client #{:audio :out})
;; See the name of the ports that overtone uses, probably Overtone:out_1 / Overtone:out_2
(jack/ports @jack/default-client #{:audio :physical :in})
;; See the names of the available audio devices

(jack/connect!
 #{["Overtone:out_1" "Built-in Audio Analog Stereo:playback_FL"]
   ["Overtone:out_2" "Built-in Audio Analog Stereo:playback_FR"]})