You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: settings.js
+3-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ const settings = {
18
18
/** @type {"mono"|"stereo"} Define what the default input mode will be.*/
19
19
DEFAULT_INPUT_MODE: "mono",
20
20
/** @type {string} Define what the default left input port mode will be. (jack port name: ex: system:capture_1*/
21
-
DEFAULT_INPUT_L: "system:capture_1",
21
+
DEFAULT_INPUT_L: "PulseAudio JACK Sink:front-left",
22
22
/** @type {string} Define what the default right input port mode will be. (jack port name: ex: system:capture_1*/
23
23
DEFAULT_INPUT_R: "system:capture_2",
24
24
/** @type {"mono"|"stereo"} Define what the default output mode will be.*/
@@ -27,6 +27,8 @@ const settings = {
27
27
DEFAULT_OUTPUT_L: "system:playback_1",
28
28
/** @type {string} Right Channel for the master output. Last plugin will connect to this. */
29
29
DEFAULT_OUTPUT_R: "system:playback_2",
30
+
/** @type {boolean} Each time a plugin is added its connected to the previous and to the master output. Setting this to false will leave connections to the user. */
31
+
AUTO_CONNECT: true,
30
32
/** @type {boolean} Whether to reconnect all plugins or not automatically after significant changes. If false, user will have to manually reconnect with the button */
0 commit comments