#!/bin/sh # What GPU do I even have on this box? Suddenly I care, after years # of not caring. # # https://www.cyberciti.biz/faq/linux-tell-which-graphics-vga-card-installed/ # was one site that helped a lot with this. lspci -k | grep -i -E -A3 '3d|vga' echo "" echo "Or try 'lspci -k -vvv' and look for 'gpu' in the output." echo "Or just run 'hardinfo2'." echo ""