[PR] #348 from MingcongBai: fix(neofetch): list all Intel GPUs as detected
This commit is contained in:
commit
9636c980e7
1 changed files with 0 additions and 9 deletions
9
neofetch
9
neofetch
|
@ -3429,15 +3429,6 @@ get_gpu() {
|
||||||
|
|
||||||
IFS=$'\n' read -d "" -ra gpus <<< "$gpu_cmd"
|
IFS=$'\n' read -d "" -ra gpus <<< "$gpu_cmd"
|
||||||
|
|
||||||
# Remove duplicate Intel Graphics outputs.
|
|
||||||
# This fixes cases where the outputs are both
|
|
||||||
# Intel but not entirely identical.
|
|
||||||
#
|
|
||||||
# Checking the first two array elements should
|
|
||||||
# be safe since there won't be 2 intel outputs if
|
|
||||||
# there's a dedicated GPU in play.
|
|
||||||
[[ "${gpus[0]}" == *Intel* && "${gpus[1]}" == *Intel* ]] && unset -v "gpus[0]"
|
|
||||||
|
|
||||||
for gpu in "${gpus[@]}"; do
|
for gpu in "${gpus[@]}"; do
|
||||||
# GPU shorthand tests.
|
# GPU shorthand tests.
|
||||||
[[ "$gpu_type" == "dedicated" && "$gpu" == *Intel* ]] || \
|
[[ "$gpu_type" == "dedicated" && "$gpu" == *Intel* ]] || \
|
||||||
|
|
Loading…
Reference in a new issue