mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
6 lines
117 B
Bash
6 lines
117 B
Bash
#!/bin/bash
|
|
|
|
# omarchy:summary=Detect whether the computer has an NVIDIA GPU.
|
|
|
|
lspci | grep -qi 'nvidia' &>/dev/null
|