Acentuação errada no Arch Linux - LXDE [RESOLVIDO]

1. Acentuação errada no Arch Linux - LXDE [RESOLVIDO]

Celio Dellamo
rhus

(usa openSUSE)

Enviado em 19/10/2013 - 21:09h

Olá, novamente!!!

No terminal a acentuação está correta, mas no gedit e no kwrite está errada.
Uso o layout "us-acentos" para o meu teclado "Estados Unidos (internacional)".

Parece que tenho que editar um arquivo:
# nano /etc/X11/xorg.conf.d/10-evdev.conf

Mas não sei o que devo acrescentar.

Alguém pode me ajudar?

Obrigado!!!


  


2. MELHOR RESPOSTA

Elder Marco
eldermarco

(usa Fedora)

Enviado em 19/10/2013 - 21:23h

O LXDE deve ter alguma ferramenta para configurar o teclado, não? Se não, você pode dar uma olhada nesse artigo aqui:

http://openwritings.net/public/debian/change-keyboard-layout-us-international

Mas adaptando para o modelo e layout para o seu teclado. Note que você deve adicionar a configuração no arquivo /etc/X11/xorg.conf.

3. Re: Acentuação errada no Arch Linux - LXDE [RESOLVIDO]

Pedro
px

(usa Debian)

Enviado em 19/10/2013 - 21:40h

rhus escreveu:

Olá, novamente!!!

No terminal a acentuação está correta, mas no gedit e no kwrite está errada.
Uso o layout "us-acentos" para o meu teclado "Estados Unidos (internacional)".

Parece que tenho que editar um arquivo:
# nano /etc/X11/xorg.conf.d/10-evdev.conf

Mas não sei o que devo acrescentar.

Alguém pode me ajudar?

Obrigado!!!


Toma minha cfg, só colar no seu 10-evdev.conf e reiniciar o pc

#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbLayout" "br"
Option "XkbVariant" "abnt2"
EndSection

Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection



4. Re: Acentuação errada no Arch Linux - LXDE [RESOLVIDO]

Celio Dellamo
rhus

(usa openSUSE)

Enviado em 19/10/2013 - 22:04h

eldermarco escreveu:

O LXDE deve ter alguma ferramenta para configurar o teclado, não? Se não, você pode dar uma olhada nesse artigo aqui:

http://openwritings.net/public/debian/change-keyboard-layout-us-international

Mas adaptando para o modelo e layout para o seu teclado. Note que você deve adicionar a configuração no arquivo /etc/X11/xorg.conf.


Está muito bem explicado no site que você indicou.

Eu fiz assim:

# nano /etc/X11/xorg.conf.d/10-evdev.conf
Acrescentei estas duas linhas no arquivo.

Option "XkbLayout" "us"
Option "XkbVariant" "alt-intl"

Muito obrigado!!!


5. Re: Acentuação errada no Arch Linux - LXDE [RESOLVIDO]

Celio Dellamo
rhus

(usa openSUSE)

Enviado em 19/10/2013 - 22:07h

px escreveu:

rhus escreveu:

Olá, novamente!!!

No terminal a acentuação está correta, mas no gedit e no kwrite está errada.
Uso o layout "us-acentos" para o meu teclado "Estados Unidos (internacional)".

Parece que tenho que editar um arquivo:
# nano /etc/X11/xorg.conf.d/10-evdev.conf

Mas não sei o que devo acrescentar.

Alguém pode me ajudar?

Obrigado!!!


Toma minha cfg, só colar no seu 10-evdev.conf e reiniciar o pc

#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbLayout" "br"
Option "XkbVariant" "abnt2"
EndSection

Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection


Olá!

Seu teclado é diferente do meu.
Seu teclado é abnt2 o meu não.

Seu teclado:
Option "XkbLayout" "br"
Option "XkbVariant" "abnt2"

Meu teclado:
Option "XkbLayout" "us"
Option "XkbVariant" "alt-intl"

Obrigado!!


6. Re: Acentuação errada no Arch Linux - LXDE [RESOLVIDO]

Pedro
px

(usa Debian)

Enviado em 19/10/2013 - 22:34h

rhus escreveu:

px escreveu:

rhus escreveu:

Olá, novamente!!!

No terminal a acentuação está correta, mas no gedit e no kwrite está errada.
Uso o layout "us-acentos" para o meu teclado "Estados Unidos (internacional)".

Parece que tenho que editar um arquivo:
# nano /etc/X11/xorg.conf.d/10-evdev.conf

Mas não sei o que devo acrescentar.

Alguém pode me ajudar?

Obrigado!!!


Toma minha cfg, só colar no seu 10-evdev.conf e reiniciar o pc

#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbLayout" "br"
Option "XkbVariant" "abnt2"
EndSection

Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection


Olá!

Seu teclado é diferente do meu.
Seu teclado é abnt2 o meu não.

Seu teclado:
Option "XkbLayout" "br"
Option "XkbVariant" "abnt2"

Meu teclado:
Option "XkbLayout" "us"
Option "XkbVariant" "alt-intl"

Obrigado!!


Então sabendo disto bastava alterar com o correspondente ao seu teclado, rsrs






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts