Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@eyssette
Last active September 22, 2022 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eyssette/38a5afbc0411264692e4510a4b218455 to your computer and use it in GitHub Desktop.
Save eyssette/38a5afbc0411264692e4510a4b218455 to your computer and use it in GitHub Desktop.
Snap windows - Lubuntu

Edit .config/lxqt/globalkeyshortcuts.conf Remove the lines about the Super Key

[Super_L.33]
Comment=Show/hide main menu
Enabled=true
path=/panel/mainmenu/show_hide

Edit .config/openbox/lxqt-rc.xml and .config/openbox/rc.xml Add :

<!-- Personal Keybindings -->
    <keybind key="W-Left">
      <action name="UnmaximizeFull"/>
      <action name="MaximizeVert"/>
      <action name="MoveResizeTo">
        <width>50%</width>
      </action>
      <action name="MoveToEdge"><direction>west</direction></action>
    </keybind>
    <keybind key="W-Right">
      <action name="UnmaximizeFull"/>
      <action name="MaximizeVert"/>
      <action name="MoveResizeTo">
        <width>50%</width>
      </action>
      <action name="MoveToEdge"><direction>east</direction></action>
    </keybind>
    <keybind key="W-Down">
       <action name="Unmaximize"/>
    </keybind>
    <keybind key="W-Up">
       <action name="Maximize"/>
    </keybind>

Open the Terminal

openbox --reconfigure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment