Page 1 of 1

Raspberry Pi official keyboard raspberry key

Posted: Fri Apr 17, 2020 7:30 pm
by kaczy18
Hi! What's for raspberry icon key (between left Fn and Alt keys) on official keyboard?

Re: Raspberry Pi official keyboard raspberry key

Posted: Fri Apr 17, 2020 7:33 pm
by trejan
Equivalent to the Windows key on a regular PC keyboard.

Re: Raspberry Pi official keyboard raspberry key

Posted: Fri Apr 17, 2020 7:38 pm
by kaczy18
Yes, I guessed that ;), but what it do in Raspbian? Can I assign some action to it?

Re: Raspberry Pi official keyboard raspberry key

Posted: Fri Apr 17, 2020 7:42 pm
by dickon
Meta, most likely. Window managers often use it.

Re: Raspberry Pi official keyboard raspberry key

Posted: Fri Apr 17, 2020 7:48 pm
by trejan
It is the super key. It is a modifier key like Ctrl and Alt.

$HOME/.config/openbox/lxde-rc.xml lists these keybinds for the super/Windows key.

Code: Select all

  <keybind key="W-F1">
    <action name="Desktop"><desktop>1</desktop></action>
  </keybind>

  <keybind key="W-F2">
    <action name="Desktop"><desktop>2</desktop></action>
  </keybind>
  
  <keybind key="W-F3">
    <action name="Desktop"><desktop>3</desktop></action>
  </keybind>
  
  <keybind key="W-F4">
    <action name="Desktop"><desktop>4</desktop></action>
  </keybind>
  
  <keybind key="W-d">
    <action name="ToggleShowDesktop"/>
  </keybind>
  
  <keybind key="W-e">
    <action name="Execute">
      <startupnotify>
        <enabled>true</enabled>
        <name>PCManFM</name>
      </startupnotify>
      <command>pcmanfm</command>
    </action>
  </keybind>
  
  <keybind key="W-f">
    <action name="Execute">
      <command>pcmanfm --find-files</command>
      </action>
  </keybind>

  <keybind key="W-r">
      <action name="Execute">
        <command>lxpanelctl run</command>
      </action>
  </keybind>

Re: Raspberry Pi official keyboard raspberry key

Posted: Sat Apr 18, 2020 9:22 am
by kaczy18
Thank you! Maybe I skipped something, but it looks like Raspberry Foundation didn't mention anything about this key, at least in manual from official Desktop Kit.