Nikita Bobko
Nikita Bobko
> The problem is with child windows. Not necessarily. Consider the case when users have more than one projects opened in Xcode or IntelliJ. It's more than one windows that...
`subrole="AXSystemDialog"` filters dialogs. It's not about child/parent/leader windows What you want is `if.is-tiled-by-default`/`if.is-dialog`
One more use case for `if.is-dialog` https://github.com/nikitabobko/AeroSpace/issues/216
One more use case: Ghostty quick terminal window https://github.com/ghostty-org/ghostty/discussions/3512 Resolved in 0.17.0-Beta
> it's moved to monitor A and deactivated by the application, for losing focus? Yes, that is the reason for this issue to occur I don't think it's possible to...
If you want all new windows to open up on a specific workspace you can do this: ```toml [[on-window-detected]] check-further-callbacks = true run = 'move-node-to-workspace default_workspace' ```
But the suggested approach will also move dialog windows and popups The complete solution would be: ``` [[on-window-detected]] if.is-dialog = false check-further-callbacks = true run = 'move-node-to-workspace default_workspace' ``` But...
> I experience an issue on CleanShot X where their UI for selecting a monitor is captured and grabbed by AeroSpace and moved to the current focused monitor. Please try...
I didn't implement this feature because I couldn't wrap my head around it **If users use gaps for practical purposes** to distinguish between windows then they can only use the...
`smart_gaps inverse_outer` makes more sense to me Please see https://github.com/nikitabobko/AeroSpace/issues/60#issuecomment-1933133848