def detect_intel_gpu()

in src/hardware/hardware_detector.py [0:0]


    def detect_intel_gpu(self) -> bool:
        if platform.system() == "Linux":
            lspci_output = self._run_cmd(['lspci'])
            return 'Intel' in lspci_output and ('VGA' in lspci_output or 'Display' in lspci_output)
        elif platform.system() == "Darwin":
            system_profiler = self._run_cmd(['system_profiler', 'SPDisplaysDataType'])
            return 'Intel' in system_profiler
        return False