Artix Linux Forum

Artix Linux => System => Topic started by: metwo on 02 August 2025, 12:27:42

Title: Adding line to keyboard.conf breaks login manager
Post by: metwo on 02 August 2025, 12:27:42
I've just noticed that adding:

Code: [Select]
XKBPTIONS="terminate:ctrl_alt_bksp"

to

/etc/X11/xorg.conf.d/00-keyboard.conf

breaks the login manager, where falls back to a terminal login in KDE. Is this expected behaviour?

Thanks
Title: Re: Adding line to keyboard.conf breaks login manager
Post by: gripped on 02 August 2025, 12:48:04
I think you want
Code: [Select]
Section "InputClass"
     Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection
Title: Re: Adding line to keyboard.conf breaks login manager
Post by: metwo on 02 August 2025, 13:18:30
I think you want
Code: [Select]
Section "InputClass"
     Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

You are correct. Thank you