You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there are many windows opened or some windows are in the fulscreen mode sometimes it takes time to navigate to the right window, so would be nice to able to achieve that with one-two keystrokes in consisten, intuitive way with easy config of glaze wm.
Describe the solution you'd like
I think config could look like this:
# window indexes
# jump to window by index.
# 1. despite of the current layout all windows will be displayed as small squares trying to fit all space on the screen
# 2. every square represeting the window will be labeled with title and index from windowIndexes above
# 3. it is possible to navigate between them with same keybindings from tiling navigation
# 4. once window selected, the prev. layout restored and the selected window becomes active
windowIndexes = [1,2,3,45,6,7,8,9,a,b,c,d]
- commands: ['toggle-jump-mode']
bindings: ['alt+shif+t']
# cycle to the next / prev window - that looks logical with jump to window if need, for example, to go back after the jump
# assuming there are three windows that were active in the next order [3,2,1]
# pressing alt+shift+e allows to move focus to the prev window
# once focus moved the debounce timeout started
# if debounce timeout passed, the active order will look like [2,3,1] - because prev window was 2, it is now active, the 3 becomes the last prev
# before debounce time pass it possible the active order is not modified and it is possible to change focus with alt + shift + e/r in two directions
cycleDebounceTimeoutMs: 500
- commands: ['cycle-focus-prev-window']
bindings: ['alt+shif+e']
# cycle to the next. active window
cycleTimeoutMs: 500
- commands: ['cycle-focus-next-window']
bindings: ['alt+shif+r']
Alternatives considered
the similar could achieved with autohotkey and alt + tab, alt + shift tab, win + tab, that I am pretty happy :)
But small disadvantages are:
complicated config - the one glazewm file looks simpler
need 3rd party autohotkey
not consistent behavior, for example, win + tab, have to use arrows, when would like to use alt + j, as in glazewm tiles
The text was updated successfully, but these errors were encountered:
Describe the problem/motivation
When there are many windows opened or some windows are in the fulscreen mode sometimes it takes time to navigate to the right window, so would be nice to able to achieve that with one-two keystrokes in consisten, intuitive way with easy config of glaze wm.
Describe the solution you'd like
I think config could look like this:
Alternatives considered
the similar could achieved with autohotkey and alt + tab, alt + shift tab, win + tab, that I am pretty happy :)
But small disadvantages are:
The text was updated successfully, but these errors were encountered: