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 Nov 25, 2024
1 parent ab72538 commit b918f2d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions qubesadmin/device_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,13 +646,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 b918f2d

Please sign in to comment.