Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
18
rated 0 times [  18] [ 0]  / answers: 1 / hits: 15532  / 2 Years ago, sat, april 2, 2022, 2:58:16

In lubuntu-rc.xml Lubuntu doesn't have a hotkey to maximize the current window.


More From » lubuntu

 Answers
2

Here are some keybindings I use for window control on Lubuntu/LXDE. The first binding is what you're searching for but I thought you might find the other ones useful as well:



<!-- 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>


You might have to tweak the percentages based on whether you use a panel or not.



C-W-Up means CTRL + SUPER +


[#30817] Sunday, April 3, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
horicgly

Total Points: 36
Total Questions: 126
Total Answers: 104

Location: Iceland
Member since Thu, Dec 1, 2022
1 Year ago
;