Add a script for installing Tobii EyeX

This commit is contained in:
Manuel Thalmann 2023-07-15 21:37:52 +02:00
parent 2775a6feb0
commit c8f375740a
2 changed files with 8 additions and 0 deletions

View file

@ -15,4 +15,7 @@ function Install-PortValhallaDrivers {
. "$mbDriverPath/IntelBluetooth/Install.ps1" $context;
. "$driverPath/AMDChipsetX399/Install.ps1" $context;
. "$driverPath/AMDThreadRipper2950X/Install.ps1" $context;
. "$driverPath/TobiiEyeX/Install.ps1" $context;
choco install -y geforce-game-ready-driver;
}

View file

@ -0,0 +1,5 @@
#!/bin/bash
param($context)
. "$PSScriptRoot/../../Scripts/SoftwarePackage.ps1";
Install-SoftwarePackage $context "https://files.update.tech.tobii.com/Tobii_Eye_Tracking_Core_v2.16.8.214_x86.exe";