desktop-cat/scripts/animate.sh

15 lines
233 B
Bash
Executable File

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