Desativa a repetição da tecla globalmente

1

Desejo desligar todas as repetições de tecla quando o X é iniciado. Eu tentei adicionar

xset r off

para / etc / X11 / xinit / xinitrc e para outros arquivos na mesma área, mas isso não parece funcionar. Executar o mesmo comando em um terminal depois de inicializar funciona conforme o esperado.

Isso está no centOS 6.5.

    
por SixDegrees 13.01.2015 / 13:23

1 resposta

1

To customize this, create your own in your home directory. Name it .xinitrc, make sure it is an executable script, and chmod +x.

– TLDP - The X Window User HOWTO - Running X

A personalização é feita por um arquivo .xinitrc em ~ ; se presente, /etc/X11/xinit/xinitrc não carrega.

O HOWTO de TLDP acima sugere que há .xclients para situações sem .xinitrc .

A ordem de carregamento dos arquivos funciona assim:

Startx typically runs without command line arguments, but command line arguments will override its normal behavior described below. It gets client arguments from one of:

  • .xinitrc in the user's home directory, if the file exists.
  • /etc/X11/xinit/xinitrc if the above file doesn't exist.
  • /usr/X11R6/lib/X11/xinit/xinitrc by default if the above two files don't exist.

How Linux X works

Como a citação revela; startx decide isso, que é um script de shell que pode ser personalizado.

    
por 13.01.2015 / 13:38