desktop-cat/scripts/animate.sh

15 lines
242 B
Bash
Executable File

#!/usr/bin/env fish
set CAT_DIR ~/.config/eww/cat_animation
set IDLE_FOLDER $CAT_DIR/tailflick_frames
while true
if test (random 0 10000) = 0
for frame in $IDLE_FOLDER/*
echo $frame
sleep 0.1
end
end
sleep 0.1
end