Por que a configuração das Configurações do NVIDIA X Server não é salva na reinicialização?

3

Eu estou em uma máquina de 64 bits rodando Debian 8.2 "Jessie" com MATE Desktop Environment.

Eu tenho uma placa de vídeo Geforce GTX 650ti.

Estou logado como uma conta não-superusuário chamada "joão".

Eu abro a GUI de configurações do NVIDIA X Server, altero o brilho dos meus monitores de 0.000 para -0.1, vou para a seção "nvidia-settings Configuration", clico em "Save Current Configuration" e clico em "Quit".

Mas quando eu reinicio, o brilho está de volta em 0.000.

Por quê?

Como corrijo isso?

    
por Username 04.01.2016 / 03:28

1 resposta

2

Ele não usa essa configuração automaticamente, em vez disso, você precisa carregá-la manualmente, por exemplo, por um dos métodos mostrados no arquivo leia-me, ou por sua própria maneira favorita de iniciar algo no login. O comando que você está procurando é nvidia-settings --load-config-only .

4.  Loading Settings Automatically

The NVIDIA X driver does not preserve values set with nvidia-settings
between runs of the X server (or even between logging in and logging
out of X, with xdm, gdm, or kdm).  This is intentional, because
different users may have different preferences, thus these settings
are stored on a per user basis in a configuration file stored in
the user's home directory.

The configuration file is named "~/.nvidia-settings-rc".  You can
specify a different configuration file name with the "--config"
commandline option.

After you have run nvidia-settings once and have generated a
configuration file, you can then run:

    nvidia-settings --load-config-only

at any time in the future to upload these settings to the X
server again.  For example, you might place the above command in
your ~/.xinitrc file so that your settings are applied automatically
when you log in to X.

Your .xinitrc file, which controls what X applications should
be started when you log into X (or startx), might look something
like this:

    nvidia-settings --load-config-only &
    xterm &
    evilwm

or:

    nvidia-settings --load-config-only &
    gnome-session

If you do not already have an ~/.xinitrc file, then chances are that
xinit is using a system-wide xinitrc file.  This system wide file
is typically here:

    /etc/X11/xinit/xinitrc

To use it, but also have nvidia-settings upload your settings,
you could create an ~/.xinitrc with the contents:

    nvidia-settings --load-config-only &
    . /etc/X11/xinit/xinitrc

System administrators may choose to place the nvidia-settings load
command directly in the system xinitrc script.

Please see the xinit(1) manpage for further details of configuring
your ~/.xinitrc file.

Fonte: ftp://download.nvidia.com /XFree86/Linux-x86_64/1.0-6106/nvidia-settings-user-guide.txt

    
por 04.01.2016 / 10:20