M BUZZ CRAZE NEWS
// general

CTRL-F Opens Terminal

By Mia Morrison

I have somehow set Ctrl+F to open xterm Terminal (not my default).

I tried finding the configuration in dconf, but I didn't find anything mentioning keyboard shortcuts, except one custom column with "command1" to some number, but it didn't have anything with Ctrl+F.

How do I change back?

4

1 Answer

If you have xbindkeys installed, Ctrl+F is one of the default shortcuts enabled that launches xterm. It can, however, conflict with your other custom keyboard shortcuts.

To deactivate the shortcut, edit your ~/.xbindkeysrc and comment out the shortcut so it looks like this:

# set directly keycode (here control + f with my keyboard)
#"xterm"
# c:41 + m:0x4

Now, this setting will not be read until xbindkeys restarts, so run killall xbindkeys and then xbindkeys & if you want to restart it. Alternatively, you can just logout and login again.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy