Skip to content

Commit

Permalink
feat(commands.tape): add commands tape for recording commands
Browse files Browse the repository at this point in the history
- Added new file commands.tape
- Added commands for recording commands
- Required PHP
- Set framerate to 120
- Set font size to 18
- Set width to 1500
- Set height to 927
- Set typing speed to 50ms
- Set playback speed to 0.2
- Typed 'php artisan soar:run --option=-version=true' with a sleep of 20ms
- Pressed enter once with a sleep of 3s
- Typed 'php artisan soar:score' with a sleep of 20ms
- Pressed enter once with a sleep of 1s
- Typed 'select * from `users`;' with a sleep of 20ms
- Pressed enter once with a sleep of 10s
  • Loading branch information
guanguans committed Jun 7, 2024
1 parent aadba22 commit 33d7c13
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions commands.tape
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# VHS documentation
#
# Output:
# Output <path>.gif Create a GIF output at the given <path>
# Output <path>.mp4 Create an MP4 output at the given <path>
# Output <path>.webm Create a WebM output at the given <path>
#
# Require:
# Require <string> Ensure a program is on the $PATH to proceed
#
# Settings:
# Set FontSize <number> Set the font size of the terminal
# Set FontFamily <string> Set the font family of the terminal
# Set Height <number> Set the height of the terminal
# Set Width <number> Set the width of the terminal
# Set LetterSpacing <float> Set the font letter spacing (tracking)
# Set LineHeight <float> Set the font line height
# Set LoopOffset <float>% Set the starting frame offset for the GIF loop
# Set Theme <json|string> Set the theme of the terminal
# Set Padding <number> Set the padding of the terminal
# Set Framerate <number> Set the framerate of the recording
# Set PlaybackSpeed <float> Set the playback speed of the recording
#
# Sleep:
# Sleep <time> Sleep for a set amount of <time> in seconds
#
# Type:
# Type[@<time>] "<characters>" Type <characters> into the terminal with a
# <time> delay between each character
#
# Keys:
# Backspace[@<time>] [number] Press the Backspace key
# Down[@<time>] [number] Press the Down key
# Enter[@<time>] [number] Press the Enter key
# Space[@<time>] [number] Press the Space key
# Tab[@<time>] [number] Press the Tab key
# Left[@<time>] [number] Press the Left Arrow key
# Right[@<time>] [number] Press the Right Arrow key
# Up[@<time>] [number] Press the Up Arrow key
# Down[@<time>] [number] Press the Down Arrow key
# Ctrl+<key> Press the Control key + <key> (e.g. Ctrl+C)
#
# Display:
# Hide Hide the subsequent commands from the output
# Show Show the subsequent commands in the output

# https://github.com/charmbracelet/vhs

Output ./commands.gif
# Output ./commands.mp4

Require php

Set Framerate 120
Set FontSize 18
Set Width 1500
Set Height 927
Set TypingSpeed 50ms
Set PlaybackSpeed 0.2

Type "php artisan soar:run --option=-version=true" Sleep 20ms
Enter 1 Sleep 3s

Type "php artisan soar:score" Sleep 20ms
Enter 1 Sleep 1s
Type "select * from `users`;" Sleep 20ms
Enter 1 Sleep 10s

0 comments on commit 33d7c13

Please sign in to comment.