Como posso criar um atalho para maximizar / minimizar janelas no Lubuntu?

11

Em lubuntu-rc.xml Lubuntu não tem uma tecla de atalho para maximizar a janela atual.

    
por Vitaly Zdanevich 08.06.2013 / 21:56

3 respostas

14

Aqui estão alguns atalhos de teclado que eu uso para o controle de janela no Lubuntu / LXDE. A primeira ligação é o que você está procurando, mas eu achei que você poderia encontrar as outras úteis também:

<!-- Keybindings for window tiling -->

    <keybind key="C-W-Up">        # FullScreen
      <action name="Maximize"/>
    </keybind>
    <keybind key="C-W-Down">        # MiddleScreen
      <action name="UnmaximizeFull"/>
      <action name="MoveResizeTo"><x>center</x><y>center</y><width>50%</width><height>50%</height></action>
    </keybind>

    <keybind key="C-W-Left">        # HalfLeftScreen
      <action name="UnmaximizeFull"/>
      <action name="MoveResizeTo"><x>0</x><y>0</y><height>100%</height><width>50%</width></action>
    </keybind>
    <keybind key="C-W-Right">        # HalfRightScreen
      <action name="UnmaximizeFull"/>
      <action name="MoveResizeTo"><x>-0</x><y>0</y><height>100%</height><width>50%</width></action>
    </keybind>

    <keybind key="C-W-1">        # UpperQuarterLeft
      <action name="UnmaximizeFull"/>
      <action name="MoveResizeTo"><x>0</x><y>0</y><height>50%</height><width>50%</width></action>
    </keybind>

    <keybind key="C-W-2">        # LowerQuarterLeft
      <action name="UnmaximizeFull"/>
      <action name="MoveResizeTo"><x>0</x><y>-0</y><height>50%</height><width>50%</width></action>
    </keybind>

    <keybind key="C-W-3">        # LowerQuarterRight
      <action name="UnmaximizeFull"/>
      <action name="MoveResizeTo"><x>-0</x><y>-0</y><height>50%</height><width>50%</width></action>
    </keybind>

    <keybind key="C-W-4">        # UpperQuarterRight
      <action name="UnmaximizeFull"/>
      <action name="MoveResizeTo"><x>-0</x><y>0</y><height>50%</height><width>50%</width></action>
    </keybind>

Você pode precisar ajustar as porcentagens com base no uso ou não de um painel.

C-W-Up significa CTRL + SUPER +

    
por Glutanimate 09.06.2013 / 19:41
2

Para abrir aplicativos all maximizados (não em tela cheia como em F11 ), coloque o seguinte código entre <applications> e </applications> em lubuntu-rc.xml :

<application type="normal">
  <maximized>true</maximized>
</application>

Este código já está presente, mas está comentado junto com muitas outras opções úteis, na seção applications de lubuntu-rc.xml .

    
por user25656 10.06.2013 / 19:41
0

Para completar este tópico, vou agrupar algumas informações de outro lugar.

Para editar o arquivo de configuração:

gedit ~/.config/openbox/lubuntu-rc.xml

Para aplicar as alterações:

openbox --reconfigure

E, pessoalmente, quero que a tecla do Windows (ou superchave) + até alternar a maximização e o W + para baixo para minimizar (ou tornar-se ícone), portanto, eu pessoalmente mudo

<keybind key="W-Up">         # HalfUpperScreen
  <action name="UnmaximizeFull"/>
  <action name="MoveResizeTo"><x>0</x><y>0</y><width>100%</width><height>50%</height></action>
</keybind>
<keybind key="W-Down">       # HalfLowerScreen
  <action name="UnmaximizeFull"/>
  <action name="MoveResizeTo"><x>0</x><y>-0</y><width>100%</width><height>50%</height></action>
</keybind>

para

<keybind key="W-Up">        # Maximize
  <action name="ToggleMaximize"/>
</keybind>
<keybind key="W-Down">      # Minimize
  <action name="Iconify"/>
</keybind>
    
por rhombidodecahedron 18.08.2016 / 20:39