Lubuntu 默认键盘快捷键:始终位于顶部、正常、最大化

Lubuntu 默认键盘快捷键:始终位于顶部、正常、最大化

我发现Windows+Left把窗口放在左边,Windows+Up把窗口放在顶部...

我无法找到maximizeLayer-always on topLayer-normal其他的默认快捷方式。

有默认快捷方式吗?我们必须手动配置它们吗?

答案1

Lubuntu 默认快捷方式可以在以下位置找到:

https://help.ubuntu.com/community/Lubuntu/Keyboard#Keyboard_shortcuts

其他必须由每个用户单独配置。

答案2

F11切换所谓的全屏展示。

由于在浏览器上使用时它会保留选项卡和菜单,因此这是一个切换最大化而不是切换全屏。

答案3

禁用Super_L全局操作管理器中的条目(在应用程序菜单中搜索“快捷键”)

在全局操作管理器中取消选择“Super_L”行选项

运行sudo featherpad ~/.config/openbox/lxqt-rc.xmlsudo nano ~/.config/openbox/lxqt-rc.xml

如果您使用的是 Featherpad,请<keyboard>使用快捷键Ctrl+搜索标签;如果您使用的是编辑器,请使用 + 。在标签后插入以下内容:FCtrlWnanokeyboard

 <!-- Keybindings for window tiling -->
<keybind key="W-Up">        # FullScreen
    <action name="Maximize"/>
</keybind>
<keybind key="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="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="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="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="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="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="W-4">        # UpperQuarterRight
    <action name="UnmaximizeFull"/>
    <action name="MoveResizeTo">
        <x>-0</x>
        <y>0</y>
        <height>50%</height>
        <width>50%</width>
    </action>
</keybind>  

保存并openbox --reconfigure在终端中运行。

使用 Lubuntu 21.10

相关内容