My personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: fixed window and layer rules for hyprland update

legoraft 9ddc7076 fe992399

+32 -10
+32 -10
hypr/.config/hypr/hyprland.conf
··· 55 55 } 56 56 57 57 # -- Rules -- 58 - windowrule = suppressevent maximize, class:.* 58 + windowrule { 59 + # Ignore maximize requests from all apps. You'll probably like this. 60 + name = suppress-maximize-events 61 + match:class = .* 62 + 63 + suppress_event = maximize 64 + } 59 65 60 - # Fix some dragging issues with XWayland 61 - windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0 66 + windowrule { 67 + # Fix some dragging issues with XWayland 68 + name = fix-xwayland-drags 69 + match:class = ^$ 70 + match:title = ^$ 71 + match:xwayland = true 72 + match:float = true 73 + match:fullscreen = false 74 + match:pin = false 75 + 76 + no_focus = true 77 + } 62 78 63 79 # Float godot windows except project 64 - windowrule = tile, class:Godot, title:(.*)(Godot Engine) 80 + windowrule { 81 + name = Godot float 82 + match:class = Godot 83 + match:title = (.*)(Godot Engine) 84 + 85 + tile = true 86 + } 65 87 66 88 # Blur rules 67 - layerrule = blur, notifications 68 - layerrule = ignorezero, notifications 69 - layerrule = blur, waybar 70 - layerrule = ignorezero, waybar 71 - layerrule = blur, rofi 72 - layerrule = ignorezero, rofi 89 + layerrule = match:namespace notifications, blur on 90 + layerrule = match:namespace notifications, ignore_alpha 0 91 + layerrule = match:namespace waybar, blur on 92 + layerrule = match:namespace waybar, ignore_alpha 0 93 + layerrule = match:namespace rofi, blur on 94 + layerrule = match:namespace rofi, ignore_alpha 0