this post was submitted on 18 Dec 2024
12 points (100.0% liked)

KDE

5576 readers
59 users here now

KDE is an international technology team creating user-friendly free and open source software for desktop and portable computing. KDE’s software runs on GNU/Linux, BSD and other operating systems, including Windows.

Plasma 6 Bugs

If you encounter a bug, proceed to https://bugs.kde.org/, check whether it has been reported.

If it hasn't, report it yourself.

PLEASE THINK CAREFULLY BEFORE POSTING HERE.

Developers do not look for reports on social media, so they will not see it and all it does is clutter up the feed.

founded 2 years ago
MODERATORS
 

I knew I had seen this option somewhere at some point in KDE's plethora of customization options. But why is it in the keyboard advanced options??? Shouldn't this be in the display config section? Or at least in the shortcuts section!

you are viewing a single comment's thread
view the rest of the comments
[–] Muehe@lemmy.ml 3 points 3 weeks ago

Oh it wasn't that bad. You just had to understand rules, models, layouts, variants, and options. Oh and then of course key codes, syms, maps, states, and modifiers. Oh and then...

Kidding aside though, in this particular case it would have been relatively simple:

If you wanted to enable the Ctrl+Alt+Backspace sequence to kill the X server by default, you could create a configuration snippet /etc/X11/xorg.conf.d/90-zap.conf containing:

Section "InputClass"
    Identifier "keyboard defaults"
    MatchIsKeyboard "on"

    Option "XKbOptions" "terminate:ctrl_alt_bksp"
EndSection

This would be equivalent to running the shell command:

setxkbmap -option "terminate:ctrl_alt_bksp"