Skip to main content
Topic: Need help with some topic in a newly installed artix runit base system [SOLVED] (Read 1100 times) previous topic - next topic
0 Members and 4 Guests are viewing this topic.

Need help with some topic in a newly installed artix runit base system [SOLVED]

Hello! First, thanks for the amazing wiki! I was able to install artix using it as a guide.

But now, I have 2 problems:

1-Screen tearing
2-Wrong keyboard layout (just 1 key is wrong, the others are fine)

I am using XFCE with xfwm. When I was without GUI, loadkeys br-abnt2 was working fine, but then in xfce it was back to the default keyboard layout, so in xfce configs, I changed the layout to portuguese, brazil, no dead keys. I thought eveything was fine until I tried to write a word with é for example. This key to do this instead do this: 'e

How can I fix it? Any suggestion will be helpful. Thanks!

EDIT: Problem 2 is fixed, I just changed to portuguese/Brazil IBM/lenovo and everything is fine now.

Re: Need help with some topic in a newly installed artix runit base system

Reply #1
What video card? May be wrong driver/module is being used?

Re: Need help with some topic in a newly installed artix runit base system

Reply #2
What video card? May be wrong driver/module is being used?

Well, in one machine is a atlhon 200GE

in other is a hd graphics 400 (celeron n3060)

In atlhon 200GE is fixed, I just disabled and enabled screen compositing and now works with not tear.

I tried the same thing in celeron n3060 machine, but tearing still. I installed libva-intel-driver, shoul I try another driver?


 

Re: Need help with some topic in a newly installed artix runit base system

Reply #4
Generic way is you can do 'lsmod' and it will list modules being used and then you can look for it in that list

Re: Need help with some topic in a newly installed artix runit base system

Reply #5
Hi,

Use this configuration on X:

#
# etc/X11/xorg.conf.d/10-keyboard.conf
#

Section "InputClass"
    Identifier "system-keyboard"
    MatchDriver "libinput"
    MatchIsKeyboard "on"
    Option "XkbLayout" "br"
    Option "XkbModel" "abnt2"
    Option "XkbVariant" "abnt2"
EndSection

Use this variable set on your shell (rc) file, in my case, ZSH:

#
# ~/.zshenv
#

### locale
export LANG="en_US.UTF-8"
export LC_COLLATE="C"

Regards,

Colpshift



Re: Need help with some topic in a newly installed artix runit base system

Reply #8
Generic way is you can do 'lsmod' and it will list modules being used and then you can look for it in that list

Thanks for everyone who commented here, but I got no tearing after installing the xorg drivers in my laptop :)

Thanks again!