We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d178c28 + 15bc726 commit 8a68554Copy full SHA for 8a68554
BlendPresence/__init__.py
@@ -218,6 +218,9 @@ def updatePresence():
218
gpustr = gpustr.replace("NVIDIA GeForce ","")
219
gpustr = gpustr.split("/", 1)[0]
220
largeIconText = largeIconText + " | " + gpustr
221
+ elif gpustr and "Quadro" in gpustr:
222
+ gpustr = gpustr.split("/", 1)[0]
223
+ largeIconText = largeIconText + " | " + gpustr
224
elif gpustr and "Radeon" in gpustr:
225
226
0 commit comments