fix GPU driver detection bug with bumblebee-managed dual video cards
This commit is contained in:
parent
ed0b0a9746
commit
e5d28f28c6
1 changed files with 1 additions and 1 deletions
2
neofetch
2
neofetch
|
@ -3304,7 +3304,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 && $1 == " Kernel driver in use" {printf $2 ", "}')"
|
||||||
gpu_driver="${gpu_driver%, }"
|
gpu_driver="${gpu_driver%, }"
|
||||||
|
|
||||||
if [[ "$gpu_driver" == *"nvidia"* ]]; then
|
if [[ "$gpu_driver" == *"nvidia"* ]]; then
|
||||||
|
|
Loading…
Reference in a new issue