From 89c92906023040a8dfa4b6740b17de6f88d6b1a5 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 18 Mar 2025 11:50:10 -0700 Subject: [PATCH] refactor: Simplify asciinema command in tmux_record.sh --- scripts/tmux_record.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/tmux_record.sh b/scripts/tmux_record.sh index 14b264119..0051153d5 100644 --- a/scripts/tmux_record.sh +++ b/scripts/tmux_record.sh @@ -4,4 +4,5 @@ TMUX_SIZE=$(tmux display -p '#{window_width}x#{window_height}') # Start asciinema recording with the tmux window size -asciinema rec -c "tmux attach -t 0 -r" tmp.cast --headless --append --tty-size $TMUX_SIZE +asciinema rec -c "tmux attach -t 0 -r" --headless --tty-size $TMUX_SIZE $* +