We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dced812 commit c363d08Copy full SHA for c363d08
src/hhd/plugins/overlay/controllers.py
@@ -255,9 +255,9 @@ def find_devices(
255
# Skip HHD devices
256
if "hhd" in dev.get("phys", "") or (
257
# Allow bluetooth controllers that contain uhid and phys, while
258
- # blocking hhd devices that contain uhid but not phys
+ # blocking hhd devices that contain uhid and a special mac address
259
"uhid" in dev.get("sysfs", "")
260
- and not dev.get("phys", "")
+ and "35:53:" not in dev.get("uniq", "")
261
):
262
continue
263
0 commit comments