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
|