-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvhs.tape
169 lines (153 loc) · 3.56 KB
/
vhs.tape
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# 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>
#
# 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 Theme <string> Set the theme of the terminal (JSON)
# 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
Output "../img/wander.gif"
Set Padding 10
Set FontSize 13
Set Width 1100
Set Height 450
Set Framerate 15
Hide
Type "wander"
Enter
Sleep 500ms
Show
# All Jobs
Sleep 1s
Type@500ms "jj"
Type@500ms "k"
Sleep 101ms
Screenshot ../img/screenshots/All_Jobs.png
Sleep 1s
# All Events
Type "V"
Sleep 100ms
Screenshot ../img/screenshots/Global_Events.png
Sleep 2s
Type@300ms "j"
Enter
Sleep 1s
Type@500ms "dd"
# Back to All Jobs
Escape@1s 2
Sleep 1s
# All Tasks
Type "A"
Sleep 100ms
Screenshot ../img/screenshots/All_Tasks.png
Sleep 1s
Type@500ms "jj"
Type@500ms "k"
Sleep 1s
# Exec for Task
Type "e"
Sleep 1s
Backspace 10
Type@200ms "bash"
Sleep 500ms
Enter
Sleep 500ms
Type@150ms "ls -la"
Sleep 300ms
Enter
Sleep 100ms
Screenshot ../img/screenshots/Exec.png
Sleep 2s
Ctrl+d
Sleep 2s
Escape@300ms 2
Sleep 500ms
# Admin Actions for Task
Type "X"
Sleep 1s
Type@150ms "jj"
Sleep 1s
Enter
Sleep 1s
Type "j"
Sleep 1s
Enter
Sleep 2s
# Back to All Jobs
Type "J"
Sleep 1s
# Tasks for Job
Type "j"
Sleep 500ms
Enter
Sleep 100ms
Screenshot ../img/screenshots/Tasks_for_Job.png
Sleep 2s
# Logs for Task, Filtering
Enter
Sleep 100ms
Screenshot ../img/screenshots/Task_Logs.png
Sleep 2s
Type "/"
Sleep 1s
Type@200ms "INFO"
Sleep 0.5s
Enter
[email protected] "nnnN"
Type@300ms "jjkk"
Enter
Sleep 1s
Escape@200ms 2
# Save Logs
Ctrl+S
Type@100ms "/tmp/my_logs.txt"
Sleep 500ms
Enter
Sleep 500ms
Screenshot ../img/screenshots/Save_Any_View_to_Local_File.png
Sleep 2.5s
# Back to Tasks for Job
Escape
Sleep 1s
# Stats for Allocation
Type "s"
Sleep 100ms
Screenshot ../img/screenshots/Allocation_Statistics.png
Sleep 2s
# Exit
Hide
Ctrl+c
Sleep 1s