Updated hyprland.conf to 0.53 and hyprpaper to new syntax

This commit is contained in:
denode 2026-01-02 20:17:03 +01:00
parent 33907f620b
commit 9047d0c7f4

View file

@ -107,6 +107,7 @@ master {
misc {
force_default_wallpaper = 0
disable_hyprland_logo = true
disable_splash_rendering = false
}
@ -213,11 +214,27 @@ bindl = ,switch:on:Lid Switch, exec, hyprlock
# WINDOWS AND WORKSPACES #
# Ignore maximize requests from apps. You'll probably like this.
windowrule = suppressevent maximize, class:.*
# Fix some dragging issues with XWayland
windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
xwayland {
force_zero_scaling = true
windowrule {
name = supress-maximize-events
match:class = .*
suppress_event = maximize
}
windowrule {
name = fix-xwayland-drags
match:class = ^$
match:title = ^$
match:xwayland = true
match:float = true
match:fullscreen = false
match:pin = false
no_focus = true
}
windowrule {
name = move-hyprland-rounding
match:class = hyprland-run
move = 20 monitor_h-120
float = yes
}