Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: fix clipboard test #641

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
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.
marmarek committed Dec 16, 2024
commit d4f6cdb498fce65b9ffe2038cb4b0370a06a6683
5 changes: 3 additions & 2 deletions qubes/device_protocol.py
Original file line number Diff line number Diff line change
@@ -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****")