X11 & linux & quick linux hints marky on 22 Apr 2009
Enabling CTRL-ALT-BACKSPACE again
This is the kind of stuff that gets under my skin. Why the hell would you disable CTRL-ALT BACKSPACE. All you have done in this case is limit the user from doing what he wants. I know “Cry me a river you f’in linux zealot!” Yeah, but why? CTRL-ALT-BACKSPACE has been the quintessential break out of X11 jail card for years. Now they are going to take it away.
NOT TODAY.
Lets edit.
sudo vi /etc/X11/xorg.conf
just paste this in to the bottom of your conf file
Section "ServerFlags"
Option "DontZap" "off"
EndSection
what the hell is DontZap? well we shall consult the wisdom of the man… page.
Option "DontZap" "boolean"
This disallows the use of the Ctrl+Alt+Backspace sequence. That sequence is normally used to terminate the Xorg server. When this option is enabled (as per default), that key sequence has no special meaning. Default: on.
Now why would they go to change that default behavior from off to on? I have no idea but now we have it the bomb. Martini time.
