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 15:06:13 -05:00
parent 1d12b392f1
commit 76f26b525f
2 changed files with 43 additions and 0 deletions

View file

@ -39,6 +39,8 @@ Window actions
Raise Raise
A-Down A-Down
Lower Lower
A-[hjkl]
Move
CA-x CA-x
Close Close
CA-f CA-f
@ -51,6 +53,8 @@ Workspace management
Switch to previous workspace Switch to previous workspace
A-Right A-Right
Switch to next workspace Switch to next workspace
A-[1234]
Switch to specific workspace
Miscellaneous Miscellaneous
CA-Return CA-Return

View file

@ -46,6 +46,16 @@
<command>rofi -show combi -modes combi -combi-modes "window,drun,run"</command> <command>rofi -show combi -modes combi -combi-modes "window,drun,run"</command>
</action> </action>
</keybind> </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"> <keybind key="A-c">
<action name="ShowMenu"> <action name="ShowMenu">
<menu>client-menu</menu> <menu>client-menu</menu>
@ -64,10 +74,39 @@
<keybind key="C-A-x"> <keybind key="C-A-x">
<action name="Close"/> <action name="Close"/>
</keybind> </keybind>
<keybind key="C-A-f">
<action name="ToggleFullscreen"/>
</keybind>
<keybind key="C-A-m"> <keybind key="C-A-m">
<action name="ToggleMaximize"/> <action name="ToggleMaximize"/>
</keybind> </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"> <keybind key="C-A-Return">
<action name="Execute"> <action name="Execute">
<command>kitty</command> <command>kitty</command>