From 9896c1e988ae56a16a4d8076072c15b422dc8a01 Mon Sep 17 00:00:00 2001 From: Nicolas Dorier Date: Thu, 2 Apr 2026 18:14:35 +0900 Subject: [PATCH] Remove jetbrains specific hyprland config (#5183) IDE based on IntelliJ [2026.1](https://blog.jetbrains.com/platform/2026/02/wayland-by-default-in-2026-1-eap/) are now supporting wayland natively properly. I have personally updated Rider while removing the configuration file, and didn't noticed any issue. --- default/hypr/apps.conf | 1 - default/hypr/apps/jetbrains.conf | 41 -------------------------------- 2 files changed, 42 deletions(-) delete mode 100644 default/hypr/apps/jetbrains.conf diff --git a/default/hypr/apps.conf b/default/hypr/apps.conf index a8e27ac6..64a9567d 100644 --- a/default/hypr/apps.conf +++ b/default/hypr/apps.conf @@ -3,7 +3,6 @@ source = ~/.local/share/omarchy/default/hypr/apps/1password.conf source = ~/.local/share/omarchy/default/hypr/apps/bitwarden.conf source = ~/.local/share/omarchy/default/hypr/apps/browser.conf source = ~/.local/share/omarchy/default/hypr/apps/hyprshot.conf -source = ~/.local/share/omarchy/default/hypr/apps/jetbrains.conf source = ~/.local/share/omarchy/default/hypr/apps/localsend.conf source = ~/.local/share/omarchy/default/hypr/apps/pip.conf source = ~/.local/share/omarchy/default/hypr/apps/qemu.conf diff --git a/default/hypr/apps/jetbrains.conf b/default/hypr/apps/jetbrains.conf deleted file mode 100644 index 822e676e..00000000 --- a/default/hypr/apps/jetbrains.conf +++ /dev/null @@ -1,41 +0,0 @@ -# Fix splash screen showing in weird places and prevent annoying focus takeovers -windowrule { - name = jetbrains-splash - match:class = ^(jetbrains-.*)$ - match:title = ^(splash)$ - match:float = 1 - tag = +jetbrains-splash - center = on - no_focus = on - border_size = 0 -} - -# Center popups/find windows -windowrule { - name = jetbrains-popup - match:class = ^(jetbrains-.*) - match:title = ^(| )$ - match:float = 1 - tag = +jetbrains - center = on - # Enabling this makes it possible to provide input in popup dialogs (search window, new file, etc.) - stay_focused = on - border_size = 0 - min_size = (monitor_w*0.5) (monitor_h*0.5) - } - -# Disable window flicker when autocomplete or tooltips appear -windowrule { - name = jetbrains-tooltip - match:class = ^(jetbrains-.*)$ - match:title = ^(win.*)$ - match:float = 1 - no_initial_focus = on -} - -# Disable mouse focus -windowrule { - name = jetbrains-focus - no_follow_mouse = on - match:class = ^(jetbrains-.*)$ -}