mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-01 03:21:41 +00:00
8 lines
271 B
Plaintext
8 lines
271 B
Plaintext
|
#!/usr/bin/bash
|
||
|
# Returns true if legacy nvidia hardware (older than turing) using die names
|
||
|
# GK### (Kepler), GM### (Maxwell), GP### (Pascal), GV### (Volta)
|
||
|
if lspci -nn | grep -P "(VGA compatible|3D) controller .+G(K|M|P|V)\d{3}" > /dev/null; then
|
||
|
exit 0
|
||
|
fi
|
||
|
exit 1
|