Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I'm not using XFCE as a desktop environment, but I am using XFCE's terminal. Currently, when I press F1, I get the help. I really don't need this, and it's really annoying when I accidentally press it when in VIM when trying to press escape.

I didn't see anywhere in Preferences to change/disable keyboard shortcuts. Is there some hidden way to disable these shortcuts?

If it matters, I'm running xmonad on Arch Linux.

share|improve this question

2 Answers

up vote 3 down vote accepted

This page recommends adding blank accellator shortcuts to ~/.config/Terminal/terminalrc'. I run XFCE 4.8 and could not find this file myself. However, in my terminal preferences (under Edit), there is a shortcut tab. Help = F1 is the last shortcut in the list. My terminal emulator version is 0.4.8. Hopefully one of these will be applicable to you.

share|improve this answer
Hmm, doesn't seem to work for me. I'm running xfce4-terminal 0.6.1 for Xfce 4.10. I don't seem to have a shortcut tab... weird... – tjameson Mar 7 at 5:13
1  
If I read correctly, then apparently if you however the mouse over the menu option for help, and press a new key, it will rebind to that key instead and free up F1. link. Seems dubious but it is worth a try. – washbow Mar 7 at 5:21
Post #5 here suggests editing ~/.config/xfce4/terminal/accels.scm – washbow Mar 7 at 5:22
That dubious link seemed to work. I had to restart X, but I was able to delete the shortcut. Thanks! – tjameson Mar 7 at 5:31

on xubuntu 12.04 with xfce4-terminal 0.6.1 (Xfce 4.10) I've resolved adding:

in ~/.config/xfce4/terminal/accels.scm

(gtk_accel_path "<Actions>/terminal-window/fullscreen" "")
(gtk_accel_path "<Actions>/terminal-window/contents" "")

and in ~/.config/xfce4/terminal/terminalrc

AccelFullscreen=
AccelContents=

so both F1 help/contens and F11 fullscreen are disabled

share|improve this answer
Editing accels.scm alone works for me (version 0.6.1 on Arch). – lilydjwg May 8 at 5:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.