Skip to content

Commit

Permalink
Bugfix for Cinnamon issue 12707 (#12734)
Browse files Browse the repository at this point in the history
  • Loading branch information
timfeierabend authored Feb 17, 2025
1 parent 9627877 commit 9aeaa79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def getGraphicsInfos():
envpath = os.environ["PATH"]
os.environ["PATH"] = envpath + ":/usr/local/sbin:/usr/sbin:/sbin"
for card in getProcessOut("lspci"):
for prefix in ["VGA compatible controller:", "3D controller:"]:
for prefix in ["VGA compatible controller:", "3D controller:", "Display controller:"]:
if prefix in card:
cardName = card.split(prefix)[1].split("(rev")[0].strip()
cards[count] = cardName
Expand Down

0 comments on commit 9aeaa79

Please sign in to comment.