I can't figure out how to change my GPU name from LuminonCore IDDCX Adapter to my GPU (NVIDIA GeForce GTX 1050Ti)(Like picture below), after Installed ModBros on my RPi 3 Model B it's shows LuminonCore IDDCX Adapter. How I want to change to my GPU name??. I checked on ModBros app that detected my GPU.
Hi,
you cannot change the name of your devices in the desktop app. The names come from the Hardware Infos tools which are running in the background.
You could either find a better name here: http://localhost:42001/api/sensors/data and change your theme-config.json or you could just edit the name right in the index.html of the theme. Thats pretty easy. Just find this line:
<h2 id="mobro-gpu-name" class="text-nowrap text-truncate"></h2>
and change it to
<h2 class="text-nowrap text-truncate">NAME OF YOUR GPU</h2>
Hope it helps.
Hi,
you cannot change the name of your devices in the desktop app. The names come from the Hardware Infos tools which are running in the background.
You could either find a better name here: http://localhost:42001/api/sensors/data and change your theme-config.json or you could just edit the name right in the index.html of the theme. Thats pretty easy. Just find this line:
<h2 id="mobro-gpu-name" class="text-nowrap text-truncate"></h2>
and change it to
<h2 class="text-nowrap text-truncate">NAME OF YOUR GPU</h2>
Hope it helps.
Sorry for my english
@KuroRuby maybe you forgot to remove the id="mobro-gpu-name" from the div that will display the gpu name later on in the index.html as @eiMer mentioned. If you don't remove it, the code will replace whatever you wrote in there automatically again.
@Dave yeah I didn't read it what @eiMer post about id="mobro-gpu-name", I removed id="mobro-gpu-name" inside index.html and working like a charm. Thanks Mate!! :)
Cool great to see it works! Cheers