neofetch: Fix GPU driver error. Closes #1411
This commit is contained in:
parent
9459ca32db
commit
3d803834c1
2
neofetch
2
neofetch
|
@ -3657,7 +3657,7 @@ get_gpu_driver() {
|
||||||
case $os in
|
case $os in
|
||||||
"Linux")
|
"Linux")
|
||||||
gpu_driver="$(lspci -nnk | awk -F ': ' \
|
gpu_driver="$(lspci -nnk | awk -F ': ' \
|
||||||
'/Display|3D|VGA/{nr[NR+2]}; NR in nr {printf $2 ", "}')"
|
'/Display|3D|VGA/{nr[NR+2]}; NR in nr {printf $2 ", "; exit}')"
|
||||||
gpu_driver="${gpu_driver%, }"
|
gpu_driver="${gpu_driver%, }"
|
||||||
|
|
||||||
if [[ "$gpu_driver" == *"nvidia"* ]]; then
|
if [[ "$gpu_driver" == *"nvidia"* ]]; then
|
||||||
|
|
Reference in New Issue