You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
329 B
15 lines
329 B
record-term() {
|
|
if [ -x /usr/bin/asciinema ]; then
|
|
mkdir -p ~/.data/cast
|
|
/usr/bin/asciinema rec ~/.data/cast/"$1".cast
|
|
else
|
|
echo "apt install asciinema"
|
|
fi
|
|
}
|
|
playback-term() {
|
|
if [ -x /usr/bin/asciinema ]; then
|
|
/usr/bin/asciinema play ~/.data/cast/"$1".cast
|
|
else
|
|
echo "apt install asciinema"
|
|
fi
|
|
}
|
|
|