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: README.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,8 @@ deej is written in Go and [distributed](https://github.com/omriharel/deej/releas
41
41
- Bind multiple apps per slider (i.e. one slider for all your games)
42
42
- Bind the master channel
43
43
- Bind "system sounds" (on Windows)
44
-
- Control your microphone's input level (experimental)
44
+
-**_New:_** Bind specific audio devices by name (on Windows, _experimental_)
45
+
- Control your microphone's input level
45
46
- Lightweight desktop client, consuming around 10MB of memory
46
47
- Runs from your system tray
47
48
- Helpful notifications to let you know if something isn't working
@@ -68,7 +69,7 @@ deej is written in Go and [distributed](https://github.com/omriharel/deej/releas
68
69
69
70
`deej` uses a simple YAML-formatted configuration file named [`config.yaml`](./config.yaml), placed alongside the deej executable.
70
71
71
-
The config file determines which applications are mapped to which sliders, and which COM port/baud rate to use for the connection to the Arduino board.
72
+
The config file determines which applications (and devices) are mapped to which sliders, and which parameters to use for the connection to the Arduino board, as well as other user preferences.
72
73
73
74
**This file auto-reloads when its contents are changed, so you can change application mappings on-the-fly without restarting `deej`.**
74
75
@@ -96,9 +97,11 @@ process_refresh_frequency: 5
96
97
```
97
98
98
99
- `master` is a special option to control the master volume of the system _(uses the default playback device)_
99
-
- _New:_ `mic` is a special option to control your microphone's input level _(uses the default recording device)_. **Please note: this is an experimental feature that might not suit every hardware setup out there.**
100
+
- `mic`is a special option to control your microphone's input level _(uses the default recording device)_.
101
+
- On Windows, you can specify a device's full name, i.e. `Speakers (Realtek High Definition Audio)`, to bind that device's level to a slider. This doesn't conflict with the default `master` and `mic` options, and works for both input and output devices.
102
+
- Be sure to use the full device name, as seen in the menu that comes up when left-clicking the speaker icon in the tray menu
100
103
- `system`is a special option on Windows to control the "System sounds" volume in the Windows mixer
101
-
- Process names aren't case-sensitive, meaning both `chrome.exe` and `CHROME.exe` will work
104
+
- All names are case-**in**sensitive, meaning both `chrome.exe` and `CHROME.exe` will work
102
105
- You can create groups of process names (using a list) to either:
103
106
- control more than one app with a single slider
104
107
- choose whichever process in the group that's currently running (i.e. to have one slider control any game you're playing)
Copy file name to clipboardExpand all lines: config.yaml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# process names are case-insensitive
2
2
# you can use 'master' to indicate the master channel, or a list of process names to create a group
3
-
# experimental - you can use 'mic' to control your mic input level (uses the default recording device)
3
+
# you can use 'mic' to control your mic input level (uses the default recording device)
4
+
# windows only - you can use a device's full name, i.e. "Speakers (Realtek High Definition Audio)", to bind it. this works for both output and input devices (experimental)
4
5
# windows only - you can use 'system' to control the "system sounds" volume
Copy file name to clipboardExpand all lines: scripts/misc/default-config.yaml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# process names are case-insensitive
2
2
# you can use 'master' to indicate the master channel, or a list of process names to create a group
3
-
# experimental - you can use 'mic' to control your mic input level (uses the default recording device)
3
+
# you can use 'mic' to control your mic input level (uses the default recording device)
4
+
# windows only - you can use a device's full name, i.e. "Speakers (Realtek High Definition Audio)", to bind it. this works for both output and input devices (experimental)
4
5
# windows only - you can use 'system' to control the "system sounds" volume
0 commit comments