Files
dotfiles/arch_check/.config/hypr/scripts/toggle-animations.sh
2025-12-11 17:25:19 +01:00

14 lines
399 B
Bash
Executable File

#!/usr/bin/env bash
cache_file="$HOME/.cache/toggle_animation"
if [[ $(cat $HOME/.config/hypr/conf/animation.conf) == *"disabled"* ]]; then
echo ":: Toggle blocked by disabled.conf variation."
else
if [ -f $cache_file ]; then
hyprctl keyword animations:enabled true
rm $cache_file
else
hyprctl keyword animations:enabled false
touch $cache_file
fi
fi