User avatar
kaczy18
Posts: 7
Joined: Wed Mar 25, 2020 6:42 pm
Location: Warsaw, Poland

Raspberry Pi official keyboard raspberry key

Fri Apr 17, 2020 7:30 pm

Hi! What's for raspberry icon key (between left Fn and Alt keys) on official keyboard?
Raspberry Pi Zero, Rasberry Pi 4B

trejan
Posts: 2118
Joined: Tue Jul 02, 2019 2:28 pm

Re: Raspberry Pi official keyboard raspberry key

Fri Apr 17, 2020 7:33 pm

Equivalent to the Windows key on a regular PC keyboard.

User avatar
kaczy18
Posts: 7
Joined: Wed Mar 25, 2020 6:42 pm
Location: Warsaw, Poland

Re: Raspberry Pi official keyboard raspberry key

Fri Apr 17, 2020 7:38 pm

Yes, I guessed that ;), but what it do in Raspbian? Can I assign some action to it?
Raspberry Pi Zero, Rasberry Pi 4B

User avatar
dickon
Posts: 1539
Joined: Sun Dec 09, 2012 3:54 pm
Location: Home, just outside Reading

Re: Raspberry Pi official keyboard raspberry key

Fri Apr 17, 2020 7:42 pm

Meta, most likely. Window managers often use it.

trejan
Posts: 2118
Joined: Tue Jul 02, 2019 2:28 pm

Re: Raspberry Pi official keyboard raspberry key

Fri Apr 17, 2020 7:48 pm

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>

User avatar
kaczy18
Posts: 7
Joined: Wed Mar 25, 2020 6:42 pm
Location: Warsaw, Poland

Re: Raspberry Pi official keyboard raspberry key

Sat Apr 18, 2020 9:22 am

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.
Raspberry Pi Zero, Rasberry Pi 4B

Return to “General discussion”