Raspberry Pi desktop settings shortcuts

For many programmers do not want to rely too much on the mouse, basically use the keyboard to control the PC, so the system after Bahrain looking for desktop shortcuts, to find the desktop shortcut key for a long time finally found a way to set up:
#vim ~ / .config / openbox / lxde- rc.xml
press ESC input: 250 // skip line 250

wherein the text format is:

<keybind Key = "CAt">
  <Action name = "the Execute">
   <Command> lxterminal < / Command>
  </ Action>
</ keybind>

where key corresponding shortcut key combination uppercase W = win, S = shift, C = ctrl, A = alt,

Lowercase alphabet keyboard is the key
name is a shortcut key Type: System Definition many types,

execute is the implementation of the program, on the other reference rc.xml
program command is to be executed
we define a shortcut key ctrl + alt + t to open the terminal
we just push the format to add a shortcut, for example, to add ctrl + alt + v to start vim:
<keybind key = "CAv">
  <Action name = "the Execute">
   <the Command> vim </ the Command>
  </ Action>
</ keybind>

then reboot to restart the shortcut keys enabled!

http://www.shumeipai.net/thread-21104-1-1.html

Guess you like

Origin www.cnblogs.com/guochaoxxl/p/11617395.html