>>109251547
This is the most bizarre problem I ever had on linux. So I have an ISO keyboard (I'm a spic), and I normally put the following line in my startup script when starting my X session
setxkbmap -layout latam -option "caps:ctrl_shifted_capslock" &
This works fine, but I wanted something different so I created a file named "00-keyboard.conf" in my xorg.conf.d directory with these contents:
Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "latam"
Option "XkbOptions" "caps:ctrl_shifted_capslock"
EndSection
Once again, this worked just fine, but I reverted back to my original setup. I then noticed some of my keys behaved weird. My keyboard has a Fn key (it's a regular keyboard, not a laptop's), and for some reason some keys run their special function without the Fn key being pressed, and are even recognized differently in XEV, picrel (this one should appear as simply "F9" rather than "XF86Search"). F1 and F9-12 have this issue, but weirdly enough the rest of the keys with special functionality behave and are recognized as normal (Esc, Insert, Home, etc).
I swear I didn't have this issue before, and the only tinkering I've done recently is the one I mentioned in the beginning of this post, did I mess up something? this doesn't make any sense to me. I'm runnning artix (dinit), x11, dwm. I also confirmed this happens in the tty as well, so it's not relegated to the X session I think.