From 7fc985327ab0d13264ff6ed07c266cef6dd415fb Mon Sep 17 00:00:00 2001 From: hesam-init Date: Mon, 26 Feb 2024 14:33:02 +0330 Subject: [PATCH] feat: river and disable animation config --- hyprland/.config/hypr/conf/animation.conf | 2 +- .../hypr/conf/animations/animations-disable.conf | 8 ++++++++ .../hypr/conf/animations/animations-moving.conf | 5 +++-- .../hypr/conf/animations/animations-river.conf | 14 ++++++++++++++ 4 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 hyprland/.config/hypr/conf/animations/animations-disable.conf create mode 100644 hyprland/.config/hypr/conf/animations/animations-river.conf diff --git a/hyprland/.config/hypr/conf/animation.conf b/hyprland/.config/hypr/conf/animation.conf index 53bd09c..26dd99d 100644 --- a/hyprland/.config/hypr/conf/animation.conf +++ b/hyprland/.config/hypr/conf/animation.conf @@ -1 +1 @@ -source = ~/.config/hypr/conf/animations/animations-high.conf \ No newline at end of file +source = ~/.config/hypr/conf/animations/animations-river.conf \ No newline at end of file diff --git a/hyprland/.config/hypr/conf/animations/animations-disable.conf b/hyprland/.config/hypr/conf/animations/animations-disable.conf new file mode 100644 index 0000000..99b6074 --- /dev/null +++ b/hyprland/.config/hypr/conf/animations/animations-disable.conf @@ -0,0 +1,8 @@ +# ----------------------------------------------------- +# Animations +# name "disable" +# ----------------------------------------------------- + +animations { + enabled = false +} \ No newline at end of file diff --git a/hyprland/.config/hypr/conf/animations/animations-moving.conf b/hyprland/.config/hypr/conf/animations/animations-moving.conf index 7c43e04..7411713 100644 --- a/hyprland/.config/hypr/conf/animations/animations-moving.conf +++ b/hyprland/.config/hypr/conf/animations/animations-moving.conf @@ -1,7 +1,8 @@ -# ----------------------------------------------------- +# ----------------------------------------------------- # Animations # name "Moving" -# ----------------------------------------------------- +# ----------------------------------------------------- + animations { enabled = true bezier = overshot, 0.05, 0.9, 0.1, 1.05 diff --git a/hyprland/.config/hypr/conf/animations/animations-river.conf b/hyprland/.config/hypr/conf/animations/animations-river.conf new file mode 100644 index 0000000..66a5685 --- /dev/null +++ b/hyprland/.config/hypr/conf/animations/animations-river.conf @@ -0,0 +1,14 @@ +# ----------------------------------------------------- +# Animations +# name "river" +# ----------------------------------------------------- + +animations { + enabled = true + bezier = overshot, 0.2, 0.9, 0.1, 1.05 + animation = windows, 1, 7, overshot + animation = windowsOut, 1, 7, default, popin 80% + animation = border, 1, 10, default + animation = fade, 1, 7, default + animation = workspaces, 1, 6, default +} \ No newline at end of file