Compare commits

...

1 Commits

Author SHA1 Message Date
9fb0f6c781 fixed minor nonsense 2026-05-13 22:37:37 +01:00
2 changed files with 5 additions and 4 deletions

View File

@@ -1,4 +1,8 @@
-- Size for otter launcher
local otterSize = { 410, 220 }
if Hostname == "mobile02" then
otterSize = { 420, 220 }
end
hl.window_rule({
name = "otter-launcher",
match = {
@@ -6,7 +10,7 @@ hl.window_rule({
},
float = true,
animation = "popin 80%",
size = { 410, 220 },
size = otterSize,
opaque = true,
})

View File

@@ -38,9 +38,6 @@ for _, bezier in ipairs(beziers) do
end
local animations = {
-- Default animation
{ leaf = "global", speed = 5, spring = "mediumSpring" },
-- Window animations
{ leaf = "windows", speed = 2, spring = "mediumSpring", style = "slide right" },
{ leaf = "windowsOut", speed = 2, bezier = "heavyOvershoot", style = "popin 30%" },