mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 09:52:50 +00:00
~
This commit is contained in:
parent
223e913659
commit
7c2b5a5704
2 changed files with 57 additions and 3 deletions
30
README.md
30
README.md
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue