We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c7e4dd commit fac956aCopy full SHA for fac956a
1 file changed
usr/lib/hwsupport/valve-hardware
@@ -0,0 +1,8 @@
1
+#!/usr/bin/bash
2
+# Returns true for Valve handhelds
3
+SYS_ID="$(cat /sys/devices/virtual/dmi/id/product_name)"
4
+if [[ ":Jupiter:Galileo:" =~ ":$SYS_ID:" ]]; then
5
+ exit 0
6
+fi
7
+
8
+exit 1
0 commit comments