mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-30 22:53:37 +00:00
~
This commit is contained in:
parent
10aed29944
commit
c91f4eb45f
3 changed files with 46 additions and 3 deletions
13
README.md
13
README.md
|
@ -51,13 +51,19 @@ Window actions
|
|||
Fullscreen
|
||||
CA-m
|
||||
Maximize
|
||||
SA-Left
|
||||
Switch focus to previous window
|
||||
SA-Right
|
||||
Switch focus to previous window
|
||||
A-Tab
|
||||
Cycle focus to windows in all workspaces
|
||||
|
||||
Workspace management
|
||||
A-Left
|
||||
Switch to previous workspace
|
||||
A-Right
|
||||
Switch to next workspace
|
||||
A-[1234]
|
||||
A-[123456]
|
||||
Switch to specific workspace
|
||||
|
||||
Miscellaneous
|
||||
|
@ -87,7 +93,10 @@ or:
|
|||
|
||||
**Alt+Left arrow** to go to the previous desktop<br>
|
||||
**Alt+Right arrow** to go to the next desktop<br>
|
||||
**Alt+[1-4]** to go to a specific desktop
|
||||
**Alt+[1-6]** to go to a specific desktop<br>
|
||||
**Alt+Shift+Left arrow** to go to the previous desktop window<br>
|
||||
**Alt+Shift+Right arrow** to go to the next desktop window<br>
|
||||
**Alt+Tab** to cycle windows in all desktops
|
||||
|
||||
# (history)
|
||||
|
||||
|
|
3
TODO
3
TODO
|
@ -28,8 +28,9 @@
|
|||
[ ] alvr doesnt work :(
|
||||
[ ] Using clangd and gcc ??? Also clang-tools is atrociously big
|
||||
[ ] Try getting `ultram4rine.vscode-choosealicense` (either locally via overlays and `buildVscodeMarketplaceExtension` or via <https://github.com/nix-community/nix-vscode-extensions>)
|
||||
[ ] Add openbox keybinds for defocusing/focusing + cycling windows and maybe swapping workspaces
|
||||
[x] Add openbox keybinds for defocusing/focusing + cycling windows and maybe swapping workspaces
|
||||
+- [ ] Click to focus doesnt work unless its on the titlebar for some reason
|
||||
+- [ ] Using shift instead of ctrl seems inconsistent but it appears that other applications use ctrl+alt+arrowkeys for their own purposes which IDK if i want to overwrite
|
||||
[ ] Download Slack !!NOW WWWW!!!!FUCKKKK
|
||||
|
||||
[x] Get PulseAudio sound controls on polybar to work
|
||||
|
|
|
@ -131,11 +131,34 @@
|
|||
<to>previous</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-S-Left">
|
||||
<action name="PreviousWindow">
|
||||
<dialog>none</dialog>
|
||||
<linear>yes</linear>
|
||||
<interactive>no</interactive>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-Right">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-S-Right">
|
||||
<action name="NextWindow">
|
||||
<dialog>none</dialog>
|
||||
<linear>yes</linear>
|
||||
<interactive>no</interactive>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-Tab">
|
||||
<action name="NextWindow">
|
||||
<dialog>list</dialog>
|
||||
<raise>yes</raise>
|
||||
<allDesktops>yes</allDesktops>
|
||||
<linear>no</linear>
|
||||
<interactive>yes</interactive>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-1">
|
||||
<action name="GoToDesktop">
|
||||
<to>1</to>
|
||||
|
@ -156,6 +179,16 @@
|
|||
<to>4</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-5">
|
||||
<action name="GoToDesktop">
|
||||
<to>5</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-6">
|
||||
<action name="GoToDesktop">
|
||||
<to>6</to>
|
||||
</action>
|
||||
</keybind>
|
||||
</keyboard>
|
||||
<mouse>
|
||||
<context name="Frame">
|
||||
|
|
Loading…
Reference in a new issue