diff --git a/neofetch b/neofetch index 18d81c3a..acf517e4 100755 --- a/neofetch +++ b/neofetch @@ -1244,9 +1244,12 @@ get_gpu() { ;; *"intel"*) - gpu="$(glxinfo | grep "Device:.*Intel")" + type -p glxinfo >/dev/null && \ + gpu="$(glxinfo | grep "Device:.*Intel")" + gpu="${gpu/*Intel/Intel}" gpu="${gpu/'(R)'}" + gpu="${gpu/'Corporation'}" gpu="${gpu/ \(*}" [[ -z "$(trim "$gpu")" ]] && gpu="Intel Integrated Graphics"