├── .gitignore ├── KERNEL.md ├── OSS.md ├── README.md ├── STEAMVR.md ├── TROUBLESHOOTING.md ├── kernel ├── 0002-drm-edid-parse-DRM-VESA-dsc-bpp-target_fix.patch ├── PKGBUILD ├── config └── keys │ └── pgp │ ├── 647F28654894E3BD457199BE38DBBDC86092693E.asc │ ├── 83BC8889351B5DEBBB68416EB8AC08600F108CDF.asc │ └── ABAF11C65A2970B130ABE3C479BE3E4300411886.asc ├── polkit-vr-setcap-nice.rules └── switch-openvr-runtime.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/.gitignore -------------------------------------------------------------------------------- /KERNEL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/KERNEL.md -------------------------------------------------------------------------------- /OSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/OSS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/README.md -------------------------------------------------------------------------------- /STEAMVR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/STEAMVR.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /kernel/0002-drm-edid-parse-DRM-VESA-dsc-bpp-target_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/kernel/0002-drm-edid-parse-DRM-VESA-dsc-bpp-target_fix.patch -------------------------------------------------------------------------------- /kernel/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/kernel/PKGBUILD -------------------------------------------------------------------------------- /kernel/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/kernel/config -------------------------------------------------------------------------------- /kernel/keys/pgp/647F28654894E3BD457199BE38DBBDC86092693E.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/kernel/keys/pgp/647F28654894E3BD457199BE38DBBDC86092693E.asc -------------------------------------------------------------------------------- /kernel/keys/pgp/83BC8889351B5DEBBB68416EB8AC08600F108CDF.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/kernel/keys/pgp/83BC8889351B5DEBBB68416EB8AC08600F108CDF.asc -------------------------------------------------------------------------------- /kernel/keys/pgp/ABAF11C65A2970B130ABE3C479BE3E4300411886.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/kernel/keys/pgp/ABAF11C65A2970B130ABE3C479BE3E4300411886.asc -------------------------------------------------------------------------------- /polkit-vr-setcap-nice.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/polkit-vr-setcap-nice.rules -------------------------------------------------------------------------------- /switch-openvr-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santeri3700/vive-pro-2-on-linux/HEAD/switch-openvr-runtime.sh --------------------------------------------------------------------------------