Skip to content

Commit b918f2d

Browse files
committed
Make "multimedia" devices more detailed
Distinguish between audio, video and display adapters. This is especially relevant when setting up sys-audio or sys-gui-gpu, otherwise it's hard to find which "multimedia" device is the right one.
1 parent ab72538 commit b918f2d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

qubesadmin/device_protocol.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,13 +646,14 @@ class DeviceCategory(Enum):
646646
Microphone = ("m******",)
647647
# Multimedia = Audio, Video, Displays etc.
648648
Multimedia = (
649-
"u01****",
650-
"u0e****",
651649
"u06****",
652650
"u10****",
653651
"p03****",
654652
"p04****",
655653
)
654+
Audio = ("p0403**", "u01****")
655+
Display = ("p0300**", "p0380**")
656+
Video = ("p0400**", "u0e****")
656657
Wireless = ("ue0****", "p0d****")
657658
Bluetooth = ("ue00101", "p0d11**")
658659
Storage = ("b******", "u08****", "p01****")

0 commit comments

Comments
 (0)