neofetch: Fix GPU driver error. Closes #1411
This commit is contained in:
parent
9459ca32db
commit
3d803834c1
1 changed files with 1 additions and 1 deletions
2
neofetch
2
neofetch
|
@ -3657,7 +3657,7 @@ get_gpu_driver() {
|
|||
case $os in
|
||||
"Linux")
|
||||
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%, }"
|
||||
|
||||
if [[ "$gpu_driver" == *"nvidia"* ]]; then
|
||||
|
|
Loading…
Reference in a new issue