mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 09:52:50 +00:00
~
This commit is contained in:
parent
1d12b392f1
commit
76f26b525f
2 changed files with 43 additions and 0 deletions
|
@ -39,6 +39,8 @@ Window actions
|
|||
Raise
|
||||
A-Down
|
||||
Lower
|
||||
A-[hjkl]
|
||||
Move
|
||||
CA-x
|
||||
Close
|
||||
CA-f
|
||||
|
@ -51,6 +53,8 @@ Workspace management
|
|||
Switch to previous workspace
|
||||
A-Right
|
||||
Switch to next workspace
|
||||
A-[1234]
|
||||
Switch to specific workspace
|
||||
|
||||
Miscellaneous
|
||||
CA-Return
|
||||
|
|
|
@ -46,6 +46,16 @@
|
|||
<command>rofi -show combi -modes combi -combi-modes "window,drun,run"</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-question">
|
||||
<action name="Execute">
|
||||
<command>rofi -show run -modes run</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-period">
|
||||
<action name="Execute">
|
||||
<command>rofi -show ssh -modes ssh</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-c">
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
|
@ -64,10 +74,39 @@
|
|||
<keybind key="C-A-x">
|
||||
<action name="Close"/>
|
||||
</keybind>
|
||||
<keybind key="C-A-f">
|
||||
<action name="ToggleFullscreen"/>
|
||||
</keybind>
|
||||
<keybind key="C-A-m">
|
||||
<action name="ToggleMaximize"/>
|
||||
</keybind>
|
||||
|
||||
|
||||
<keybind key="A-h">
|
||||
<action name="MoveRelative">
|
||||
<x>-5</x>
|
||||
<y>0</y>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-j">
|
||||
<action name="MoveRelative">
|
||||
<x>0</x>
|
||||
<y>5</y>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-k">
|
||||
<action name="MoveRelative">
|
||||
<x>0</x>
|
||||
<y>-5</y>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-l">
|
||||
<action name="MoveRelative">
|
||||
<x>5</x>
|
||||
<y>0</y>
|
||||
</action>
|
||||
</keybind>
|
||||
|
||||
<keybind key="C-A-Return">
|
||||
<action name="Execute">
|
||||
<command>kitty</command>
|
||||
|
|
Loading…
Reference in a new issue