gitextract_q6r1djhm/ ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ └── peripherals_request.yml │ ├── SECURITY.md │ └── workflows/ │ ├── build.yml │ ├── codeql.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── app/ │ ├── .editorconfig │ ├── Ally/ │ │ └── AllyControl.cs │ ├── AnimeMatrix/ │ │ ├── AniMatrixControl.cs │ │ ├── AnimeMatrixDevice.cs │ │ ├── Communication/ │ │ │ ├── Device.cs │ │ │ ├── Packet.cs │ │ │ └── Platform/ │ │ │ ├── UsbProvider.cs │ │ │ └── WindowsUsbProvider.cs │ │ └── SlashDevice.cs │ ├── App.config │ ├── AppConfig.cs │ ├── AsusACPI.cs │ ├── AsusMouseSettings.Designer.cs │ ├── AsusMouseSettings.cs │ ├── AsusMouseSettings.resx │ ├── AutoUpdate/ │ │ └── AutoUpdateControl.cs │ ├── Battery/ │ │ └── BatteryControl.cs │ ├── Display/ │ │ ├── AmdDisplay.cs │ │ ├── ColorProfileHelper.cs │ │ ├── DisplayGammaRamp.cs │ │ ├── GammaRamp.cs │ │ ├── ScreenBrightness.cs │ │ ├── ScreenCCD.cs │ │ ├── ScreenControl.cs │ │ ├── ScreenInterrogatory.cs │ │ ├── ScreenNative.cs │ │ └── VisualControl.cs │ ├── Extra.Designer.cs │ ├── Extra.cs │ ├── Extra.resx │ ├── Fan/ │ │ └── FanSensorControl.cs │ ├── Fans.Designer.cs │ ├── Fans.cs │ ├── Fans.resx │ ├── GHelper.csproj │ ├── GHelper.sln │ ├── Gpu/ │ │ ├── AMD/ │ │ │ ├── AmdAdl2.cs │ │ │ └── AmdGpuControl.cs │ │ ├── GPUModeControl.cs │ │ ├── IGpuControl.cs │ │ └── NVidia/ │ │ ├── NvidiaGpuControl.cs │ │ └── NvidiaSmi.cs │ ├── Handheld.Designer.cs │ ├── Handheld.cs │ ├── Handheld.resx │ ├── HardwareControl.cs │ ├── Helpers/ │ │ ├── AsusService.cs │ │ ├── Audio.cs │ │ ├── ClamshellModeControl.cs │ │ ├── ColorUtilities.cs │ │ ├── DynamicLightingHelper.cs │ │ ├── Logger.cs │ │ ├── OSDBase.cs │ │ ├── OnScreenKeyboard.cs │ │ ├── ProcessHelper.cs │ │ ├── RestrictedProcessHelper.cs │ │ ├── Startup.cs │ │ ├── ToastForm.cs │ │ └── TouchscreenHelper.cs │ ├── Input/ │ │ ├── InputDispatcher.cs │ │ ├── KeyboardHook.cs │ │ └── KeyboardListener.cs │ ├── Matrix.Designer.cs │ ├── Matrix.cs │ ├── Matrix.resx │ ├── Mode/ │ │ ├── ModeControl.cs │ │ ├── Modes.cs │ │ └── PowerNative.cs │ ├── NativeMethods.cs │ ├── Peripherals/ │ │ ├── IPeripheral.cs │ │ ├── Mouse/ │ │ │ ├── AsusMouse.cs │ │ │ └── Models/ │ │ │ ├── Chakram.cs │ │ │ ├── ChakramCore.cs │ │ │ ├── ChakramX.cs │ │ │ ├── GladiusII.cs │ │ │ ├── GladiusIIIAimpoint.cs │ │ │ ├── GladiusIIIWireless.cs │ │ │ ├── GladiusIIWireless.cs │ │ │ ├── HarpeAceAimLab.cs │ │ │ ├── HarpeAceMini.cs │ │ │ ├── HarpeIIAce.cs │ │ │ ├── KerisIIAce.cs │ │ │ ├── KerisIIOrigin.cs │ │ │ ├── KerisWireless.cs │ │ │ ├── KerisWirelssAimpoint.cs │ │ │ ├── Pugio.cs │ │ │ ├── PugioII.cs │ │ │ ├── SpathaX.cs │ │ │ ├── StrixCarry.cs │ │ │ ├── StrixEvolve.cs │ │ │ ├── StrixImpact.cs │ │ │ ├── StrixImpactII.cs │ │ │ ├── StrixImpactIII.cs │ │ │ ├── StrixImpactIIIWireless.cs │ │ │ ├── StrixImpactIIWireless.cs │ │ │ ├── TUFM3.cs │ │ │ ├── TUFM4Air.cs │ │ │ ├── TUFM4Wireless.cs │ │ │ └── TUFM5.cs │ │ └── PeripheralsProvider.cs │ ├── Program.cs │ ├── Properties/ │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ ├── Strings.Designer.cs │ │ ├── Strings.ar.resx │ │ ├── Strings.da.resx │ │ ├── Strings.de.resx │ │ ├── Strings.es.resx │ │ ├── Strings.fr.resx │ │ ├── Strings.hu.resx │ │ ├── Strings.id.resx │ │ ├── Strings.it.resx │ │ ├── Strings.ja.resx │ │ ├── Strings.ko.resx │ │ ├── Strings.lt.resx │ │ ├── Strings.pl.resx │ │ ├── Strings.pt-BR.resx │ │ ├── Strings.pt-PT.resx │ │ ├── Strings.resx │ │ ├── Strings.ro.resx │ │ ├── Strings.tr.resx │ │ ├── Strings.uk.resx │ │ ├── Strings.vi.resx │ │ ├── Strings.zh-CN.resx │ │ ├── Strings.zh-TW.resx │ │ └── launchSettings.json │ ├── Resources/ │ │ └── Font.otf │ ├── Ryzen/ │ │ ├── OpenLibSys.cs │ │ ├── RyzenControl.cs │ │ ├── RyzenSmu.cs │ │ └── SendCommand.cs │ ├── Settings.Designer.cs │ ├── Settings.cs │ ├── Settings.resx │ ├── UI/ │ │ ├── ControlHelper.cs │ │ ├── CustomContextMenu.cs │ │ ├── IconHelper.cs │ │ ├── NumericUpDownWithUnit.cs │ │ ├── RBadgeButton.cs │ │ ├── RButton.cs │ │ ├── RCheckBox.cs │ │ ├── RComboBox.cs │ │ ├── RForm.cs │ │ ├── RForm.resx │ │ └── Slider.cs │ ├── USB/ │ │ ├── AsusHid.cs │ │ ├── Aura.cs │ │ └── XGM.cs │ ├── Updates.Designer.cs │ ├── Updates.cs │ ├── Updates.resx │ ├── WinRing0x64.sys │ ├── app.manifest │ └── global.json ├── crowdin.yml └── docs/ ├── README.ja-JP.md ├── README.md ├── README.zh-CN.md ├── _config.yml ├── _layouts/ │ └── default.html ├── bloat.bat └── debloat.bat