From 94016c87fd49e31b843e0af38875c620ad0f9ac4 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 21 Mar 2025 20:19:08 -0700 Subject: [PATCH] refactor: Simplify asciinema command in tmux_record.sh --- scripts/tmux_record.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tmux_record.sh b/scripts/tmux_record.sh index d3d5428fa..de40cca35 100755 --- a/scripts/tmux_record.sh +++ b/scripts/tmux_record.sh @@ -14,5 +14,5 @@ TMUX_SIZE=$(tmux display -p '#{window_width}x#{window_height}') echo "Using terminal size: $TMUX_SIZE" # 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 $*