-1

on RPI its possible to open the terminal with keyboard shortcut CTRL+ALT+T. Is there any way to change this shortcut to another combination or completely remove it?

Gymknopf
  • 21
  • 5

1 Answers1

0

You can change the key binding by modifying /etc/xdg/openbox/lxde-pi-rc.xml. So if you want want to run it with Alt+t you need to do:

 <keybind key="A-t">

  <action name="Execute">

    <command>lxterminal</command>

  </action>

</keybind>

And you could bind an existing shortcut to some other program.

There is a bunch of tutorials out there on this topic:

  1. Creating Custom Raspberry Pi OS Keyboard Shortcuts
  2. How to Create Custom Keyboard Shortcuts for Raspberry Pi
  • Hi Bruno Golubic, I already tried this approach. I can also finde the terminal shortcut "C-A-T" in this file, but if I change it to "W-A-T" for example, the shortcut works still with control button, not with windows button. – Gymknopf Feb 18 '22 at 07:51
  • Strange. Di you try to create some other shortcut that would use the W and that would run some other command/program? From some reading that I've done, I've found info that with some Linux distros this can be [related to language settings](https://askubuntu.com/questions/1231863/super-key-not-working-in-ubuntu-20-04). –  Feb 18 '22 at 12:23