Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
robinovitch61 committed Jan 1, 2024
1 parent 192efd9 commit ae46aff
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions img/screenshots/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
![global_events](./global_events.png)
![home](./home.png)
![job_events](./job_events.png)
Binary file modified img/screenshots/global_events.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/screenshots/home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/screenshots/job_events.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions scripts/gif_demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,14 @@ mv ~/.wander.{yaml,yaml.tmp}
vhs vhs.tape
mv ~/.wander.{yaml.tmp,yaml}
rm -f my_logs.txt
rm -f ../img/screenshots/README.md

# add each image in screenshots to readme
# add the filename as the title of each image
# make sure the image links are relative to the screenshots folder, in format ./filename.png
for file in ../img/screenshots/*.png; do
filename=$(basename -- "$file")
extension="${filename##*.}"
filename="${filename%.*}"
echo "![$filename](./$filename.png)" >> ../img/screenshots/README.md
done

0 comments on commit ae46aff

Please sign in to comment.