Skip to content

Commit 8a68554

Browse files
authored
Merge pull request #22 from NagataAsami-chan/Added-support-for-NVIDIA-Quadro
GPU display for Quadro GPU
2 parents d178c28 + 15bc726 commit 8a68554

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

BlendPresence/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,9 @@ def updatePresence():
218218
gpustr = gpustr.replace("NVIDIA GeForce ","")
219219
gpustr = gpustr.split("/", 1)[0]
220220
largeIconText = largeIconText + " | " + gpustr
221+
elif gpustr and "Quadro" in gpustr:
222+
gpustr = gpustr.split("/", 1)[0]
223+
largeIconText = largeIconText + " | " + gpustr
221224
elif gpustr and "Radeon" in gpustr:
222225
gpustr = gpustr.split("/", 1)[0]
223226
largeIconText = largeIconText + " | " + gpustr

0 commit comments

Comments
 (0)