-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
37 lines (31 loc) 路 1.21 KB
/
Copy pathconfig.example.toml
File metadata and controls
37 lines (31 loc) 路 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[ignoreDevices]
names = ["Virtual Device", "Aggregate Device"]
uids = ["00-00-00-00-00-00"]
[includeDevices]
names = ["MacBook Pro Speakers"]
uids = ["11-22-33-44-55-66"]
[aliases.app]
device = "AA:BB:CC:DD:EE:FF"
types = ["input", "output"]
[aliases.apm]
device = "AirPods Max"
types = ["output"]
# Post a macOS notification whenever `set`/`next` change a device (the
# `--notify` flag turns this on for a single invocation regardless).
[behavior]
notify = true
# Groups of Bluetooth devices that must never be connected at the same time.
# When `set` switches to a member of a group and confirms it is reachable,
# every other connected member is disconnected from Bluetooth; a failed switch
# leaves them alone. Entries are device names or MAC addresses.
[exclusive]
groups = [
["AirPods Pro", "AirPods Max"],
]
# Priority lists for `soundctl monitor`. Each list holds device names (or MAC
# addresses) in preference order; when the device list changes, monitor switches
# to the first entry that is currently present. A type with no list here follows
# whatever device of that type was just connected.
[monitor]
output = ["AirPods Max", "Studio Display", "MacBook Pro Speakers"]
input = ["AirPods Max", "MacBook Pro Microphone"]