blob: 3586ad09766571bc0ca6b3a43d82d51b80a05bd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
import os, subprocess
from .general import sys_command
from .networking import list_interfaces, enrichIfaceTypes
def hasWifi():
if 'WIRELESS' in enrichIfaceTypes(list_interfaces().values()).values():
return True
return False
def hasAMDCPU():
if subprocess.check_output("lscpu | grep AMD", shell=True).strip().decode():
return True
return False
def hasUEFI():
return os.path.isdir('/sys/firmware/efi')
def graphicsDevices():
cards = {}
for line in sys_command(f"lspci"):
if b' VGA ' in line:
_, identifier = line.split(b': ',1)
cards[identifier.strip().lower().decode('UTF-8')] = line
return cards
def hasNvidiaGraphics():
if [x for x in graphicsDevices() if 'nvidia' in x]:
return True
return False
def hasAmdGraphics():
if [x for x in graphicsDevices() if 'amd' in x]:
return True
return False
def hasIntelGraphics():
if [x for x in graphicsDevices() if 'intel' in x]:
return True
return False
# TODO: Add more identifiers
|