feat: include vhs demo
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-22 14:55:28 +02:00
parent 5401f3707d
commit e2be9ba59a
12 changed files with 277 additions and 116 deletions

13
scripts/record.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env zsh
set -e
# Loop through each file in the folder
for file in "vhs"/*; do
# Check if it is a file (not a directory)
if [[ -f "$file" ]]; then
echo "Recording: $file"
vhs "./$file"
fi
done

9
scripts/update-gifs.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env zsh
rm -r assets/gifs
set -e
cuddle x record
mkdir -p assets/gifs
mv target/vhs/* assets/gifs