Disable ubuntu 10.10 splash screen with command

Does anyone know how to disable the ubuntu 10.10 splash screen just by using a command or changing conf? because I can only ssh on the machine disable the THX screensaver.

+4
source share
2 answers

To disable the screen saver:

gconftool-2 -s /apps/gnome-screensaver/idle_activation_enabled --type=bool false 

To disable monitor sleep mode:

 gconftool-2 -s /apps/gnome-power-manager/timeout/sleep_display_ac --type=int 0 
+4
source

The command to turn off the monitor off is changed. Now you should run:

gconftool-2 -s /apps/gnome-power-manager/timeout/sleep_display_ac --type=int 0

0
source

Source: https://habr.com/ru/post/1346848/


All Articles