Change the keybinding to exit (alt+f4)

2

I'm currently using linux and pretty much every program with a GUI exits with ctrl+q. Is there a way to change the default alt+f4 to ctrl+q instead?

Jürgen Paul

Posted 2013-08-03T04:07:40.550

Reputation: 715

Answers

3

Yes, there is. Go to Preferences -> Key Bindings - User and put the following in it (assuming it's empty):

[
    { "keys": ["ctrl+q"], "command": "exit" }
]

Save the file, and you should be all set.

MattDMo

Posted 2013-08-03T04:07:40.550

Reputation: 4 968