windowsOut animation doesn't work
windowsOut animation doesn't work. Windows just disappear. Hyprland 0.55.0 built from branch v0.55.0 at commit af923e30d1d24f1f4a4f5cb8308065173c1d9539 clean (version: bump to 0.55.0). Here's my config:
```lua
-- Globals
term = "kitty"
fileMan = "thunar"
sessionMenu = ":"
appMenu = "dms ipc call widget openWith launcherButton apps"
runMenu = 'dms ipc call widget openQuery launcherButton "> "'
emojiMenu = 'dms ipc call widget openQuery launcherButton ":) "'
lockScreen = "dms ipc call lock lock"
-- Require
require("source.colors")
require("source.autostart")
require("source.input")
require("source.binds")
require("source.rules")
-- Config
hl.config({
general = {
gaps_in = 5,
gaps_out = 10,
border_size = 0,
col = {
active_border = "#" .. light,
inactive_border = "#" .. mid,
},
resize_on_border = false,
allow_tearing = false,
layout = "dwindle",
},
decoration = {
rounding = 8,
rounding_power = 2,
active_opacity = 1,
inactive_opacity = 0.9,
shadow = {
enabled = true,
range = 10,
render_power = 10,
color = "rgba(00000075)",
},
blur = {
enabled = true,
size = 1,
passes = 3,
vibrancy = 0,
},
},
animations = {
enabled = true,
},
})
-- Curves and animations
hl.curve("easeOutQuint", { type = "bezier", points = { { 0.23, 1 }, { 0.32, 1 } } })
hl.curve("easeInOutCubic", { type = "bezier", points = { { 0.65, 0.05 }, { 0.36, 1 } } })
hl.curve("linear", { type = "bezier", points = { { 0, 0 }, { 1, 1 } } })
hl.curve("almostLinear", { type = "bezier", points = { { 0.5, 0.5 }, { 0.75, 1 } } })
hl.curve("quick", { type = "bezier", points = { { 0.15, 0 }, { 0.1, 1 } } })
hl.curve("smooth", { type = "bezier", points = { { 0.32, 1.12 }, { 0.82, 0.78 } } })
hl.curve("smooth2", { type = "bezier", points = { { 0.82, 0.78 }, { 1.13, 0.32 } } })
hl.curve("smooth3", { type = "bezier", points = { { 0.66, 0.12 }, { 0.78, 0.31 } } })
hl.animation({ leaf = "global", enabled = true, speed = 10, bezier = "smooth3" })
hl.animation({ leaf = "border", enabled = true, speed = 5.39, bezier = "smooth3" })
hl.animation({ leaf = "windows", enabled = true, speed = 4.1, bezier = "smooth3", style = "gnomed" })
hl.animation({ leaf = "windowsIn", enabled = true, speed = 4.1, bezier = "smooth3", style = "gnomed" })
hl.animation({ leaf = "windowsOut", enabled = true, speed = 4.1, bezier = "smooth3", style = "gnomed" })
hl.animation({ leaf = "windowsMove", enabled = true, speed = 4.1, bezier = "quick", style = "gnomed" })
hl.animation({ leaf = "fade", enabled = false })
hl.animation({ leaf = "layers", enabled = true, speed = 2, bezier = "smooth3", style = "slide" })
hl.animation({ leaf = "workspaces", enabled = true, speed = 1, bezier = "smooth3", style = "slidevert" })
hl.animation({ leaf = "zoomFactor", enabled = false })```
关闭于 2026-05-15 1 条评论