mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* disable mouse focus for jetbrains * Match existing style --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
23 lines
971 B
Plaintext
23 lines
971 B
Plaintext
# Fix splash screen showing in weird places and prevent annoying focus takeovers
|
|
windowrule = tag +jetbrains-splash, class:^(jetbrains-.*)$, title:^(splash)$, floating:1
|
|
windowrule = center, tag:jetbrains-splash
|
|
windowrule = nofocus, tag:jetbrains-splash
|
|
windowrule = noborder, tag:jetbrains-splash
|
|
|
|
# Center popups/find windows
|
|
windowrule = tag +jetbrains, class:^(jetbrains-.*), title:^()$, floating:1
|
|
windowrule = center, tag:jetbrains
|
|
|
|
# Enabling this makes it possible to provide input in popup dialogs (search window, new file, etc.)
|
|
windowrule = stayfocused, tag:jetbrains
|
|
windowrule = noborder, tag:jetbrains
|
|
|
|
# For some reason tag:jetbrains does not work for size rule
|
|
windowrule = size >50% >50%, class:^(jetbrains-.*), title:^()$, floating:1
|
|
|
|
# Disable window flicker when autocomplete or tooltips appear
|
|
windowrule = noinitialfocus, class:^(jetbrains-.*)$, title:^(win.*)$, floating:1
|
|
|
|
# Disable mouse focus
|
|
windowrule = nofollowmouse, class:^(jetbrains-.*)$
|