1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-02-07 09:52:50 +00:00
This commit is contained in:
Rae 5e 2024-12-30 01:49:53 -05:00
parent 223e913659
commit 7c2b5a5704
2 changed files with 57 additions and 3 deletions

View file

@ -19,6 +19,36 @@ nixos-install --flake './nixos#[hostname]'
## openbox hotkeys
```
A-d
Open application menu
A-c
Open client (window) menu
A-Enter
Iconify window
A-Up
Raise window
A-Down
Lower window
CA-x
Close window
CA-m
Maximize window
CA-Enter
Open terminal (kitty)
CAS-r
Restart
A-Left
Switch to previous workspace
A-Right
Switch to next workspace
```
or:
**Alt+Left click** and drag over a window to move it<br>
**Alt+Right click** and drag over a window to resize it<br>
**Ctrl+Right click** on titlebar to open its window's menu<br>

View file

@ -51,11 +51,35 @@
<menu>client-menu</menu>
</action>
</keybind>
<keybind key="A-Left">
<action name="GoToDesktop">
<to>previous</to>
<keybind key="A-Return">
<action name="Iconify"/>
</keybind>
<keybind key="A-Up">
<action name="Raise"/>
</keybind>
<keybind key="A-Down">
<action name="Lower"/>
</keybind>
<keybind key="C-A-x">
<action name="Close"/>
</keybind>
<keybind key="C-A-m">
<action name="ToggleMaximize"/>
</keybind>
<keybind key="C-A-Return">
<action name="Execute">
<command>kitty</command>
</action>
</keybind>
<keybind key="C-A-S-r">
<action name="Execute">
<command>shutdown -r now</command>
<prompt>Really shutdown the computer?</prompt>
</action>
</keybind>
<keybind key="A-Right">
<action name="GoToDesktop">
<to>next</to>