On windows its possible to turn it off with geforce-experience and it seems that it doesn't do it definitly, it does it by software on the driver...
Asked
Active
Viewed 1.6k times
12

Philippe Gachoud
- 5,900
- 3
- 43
- 50
-
same problem, same solution on GTX 1060 – Nobody Aug 09 '16 at 21:46
-
1The solution provided here sadly does not apply to the GTX 1080. – Luis Alvarado Nov 25 '16 at 07:27
1 Answers
11
nvidia-settings --assign GPULogoBrightness=0
All attributes can be found by nvidia-settings -q all
Refer to this post for starting it at boot
The solution I choosed is to put in my ~/.xinitrc
according to this post you can do it by the following command echo "nvidia-settings --assign GPULogoBrightness=0" >> ~/.xinitrc
if you want it systemwide put it into your /etc/X11/xinit/xinitrc

Philippe Gachoud
- 5,900
- 3
- 43
- 50
-
-
-
Put it in a script. Script works when called interactively, but when I put it into init.d and launch it with service then I get "Unable to init server: Could not connect: Connection refused" – Nobody Aug 09 '16 at 21:44
-
@Nobody see the enhanced post... of course if your window manager is not launched you wont be able to run a command which requires an X server – Philippe Gachoud Jul 11 '17 at 07:30
-
1