lxde-rc.xml: definir atalhos de teclado para o PgDn

3

Estou usando o LXDE, e eu preciso criar keybinding para ALT + PgDn e ALT + PgUp no meu $HOME/.config/openbox/lxde-rc.xml

Eu já tenho o código necessário, a única coisa que falta é a descrição correta para PgDn e PgUp :

<keybind key="INSERT CODE FOR PAGE DOWN HERE">
  <action name="Execute">
    <startupnotify>
      <enabled>true</enabled>
      <name>amixer</name>
    </startupnotify>
    <command>amixer -c 0 set Master 5- unmute</command>
  </action>
</keybind>

Alguém poderia, por favor, informar qual é o código para essas duas chaves?

    
por Martin Vegter 05.08.2013 / 15:02

1 resposta

2

A partir da documentação do Openbox :

The Key is the name of the key, such as "a", "space", "Escape", "less", or "F1". You can find the name of any key by using the xev command in a terminal, pressing the desired key, and watching the output from xev in the terminal.

Para responder à sua pergunta

<keybind key="A-Prior">

para a ligação Alt + do PgUp e

<keybind key="A-Next">

para a ligação Alt + do PgDn .

    
por 05.08.2013 / 15:14