aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2026-02-27 19:15:47 +0000
committerJustine Smithies <justine@smithies.me.uk>2026-02-27 19:15:47 +0000
commit605d03db85a380f55aee0337e44ed28ff78aa8d2 (patch)
tree3408fa23497c417af2ba8939f0ba23825084db49
parent16ab048e87bf71db84b643618847f0517f7ff891 (diff)
Added picom animations for window open and close
-rw-r--r--.config/picom/picom.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf
index 94ab938..2c960f1 100644
--- a/.config/picom/picom.conf
+++ b/.config/picom/picom.conf
@@ -434,3 +434,16 @@ wintypes:
popup_menu = { opacity = 1.0; }
dropdown_menu = { opacity = 0.8; }
};
+
+# Animations
+animations = ({
+ triggers = [ "open" ];
+ preset = "fly-in";
+ direction = "down";
+},
+{
+ triggers = [ "close" ];
+ preset = "fly-out";
+ direction = "down";
+},
+)