Skip to content

Commit

Permalink
Make "multimedia" devices more detailed
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
marmarek committed Dec 16, 2024
1 parent 3153306 commit d4f6cdb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions qubes/device_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,13 +632,14 @@ class DeviceCategory(Enum):
Microphone = ("m******",)
# Multimedia = Audio, Video, Displays etc.
Multimedia = (
"u01****",
"u0e****",
"u06****",
"u10****",
"p03****",
"p04****",
)
Audio = ("p0403**", "u01****")
Display = ("p0300**", "p0380**")
Video = ("p0400**", "u0e****")
Wireless = ("ue0****", "p0d****")
Bluetooth = ("ue00101", "p0d11**")
Storage = ("b******", "u08****", "p01****")
Expand Down

0 comments on commit d4f6cdb

Please sign in to comment.