Ativando "snap" no LxQt
Dica publicada em Linux / Configuração
Ativando "snap" no LxQt
Dica testada em Gentoo 17.1 com LxQt + Openbox.
Após instalar o LxQt, faça o seguinte:
1. Edite o arquivo de configuração do LxQt no diretório HOME do seu usuário:
vim .config/openbox/lxqt-rc.xml
2. Procure por "</keyboard>".
E então, ACIMA disso, cole o seguinte:
3. Salve, feche e recarregue o Openbox:
openbox --reconfigure
Obs.: o snap usa a tecla META (Super). Caso exista algum outro atalho que a utilize, desabilite-o nas configurações para evitar conflito.
Fonte: Get back standard window snapping in Lubuntu (20.04 and newer)
Após instalar o LxQt, faça o seguinte:
1. Edite o arquivo de configuração do LxQt no diretório HOME do seu usuário:
vim .config/openbox/lxqt-rc.xml
2. Procure por "</keyboard>".
E então, ACIMA disso, cole o seguinte:
<!-- Window snapping code we are adding -->
<keybind key="Super-Left">
<action name="UnmaximizeFull"/>
<action name="MoveResizeTo">
<width>50%</width>
<height>100%</height>
<x>0%</x>
<y>0%</y>
</action>
</keybind>
<keybind key="Super-Right">
<action name="UnmaximizeFull"/>
<action name="MoveResizeTo">
<width>50%</width>
<height>100%</height>
<x>50%</x>
<y>0%</y>
</action>
</keybind>
<keybind key="Super-Down">
<action name="UnmaximizeFull"/>
<action name="MoveResizeTo">
<width>100%</width>
<height>50%</height>
<x>0%</x>
<y>50%</y>
</action>
</keybind>
<keybind key="Super-Up">
<action name="UnmaximizeFull"/>
<action name="MoveResizeTo">
<width>100%</width>
<height>50%</height>
<x>0%</x>
<y>0%</y>
</action>
</keybind>
<keybind key="Super-Left">
<action name="UnmaximizeFull"/>
<action name="MoveResizeTo">
<width>50%</width>
<height>100%</height>
<x>0%</x>
<y>0%</y>
</action>
</keybind>
<keybind key="Super-Right">
<action name="UnmaximizeFull"/>
<action name="MoveResizeTo">
<width>50%</width>
<height>100%</height>
<x>50%</x>
<y>0%</y>
</action>
</keybind>
<keybind key="Super-Down">
<action name="UnmaximizeFull"/>
<action name="MoveResizeTo">
<width>100%</width>
<height>50%</height>
<x>0%</x>
<y>50%</y>
</action>
</keybind>
<keybind key="Super-Up">
<action name="UnmaximizeFull"/>
<action name="MoveResizeTo">
<width>100%</width>
<height>50%</height>
<x>0%</x>
<y>0%</y>
</action>
</keybind>
3. Salve, feche e recarregue o Openbox:
openbox --reconfigure
Fonte: Get back standard window snapping in Lubuntu (20.04 and newer)
Dica Interessante.
___________________________________________________________