dotfiles/.config/mpv/scripts/webtorrent-hook/webtorrent-speed-printer.sh
2025-05-09 22:52:11 +02:00

9 lines
256 B
Bash
Executable file

#!/usr/bin/env bash
out_dir=$1
output_file="$out_dir"/webtorrent-output
printer_pid_file="$out_dir"/printer.pid
tail -f "$output_file" \
| awk '/Speed:/ { printf ("\r%s%s%s", "\033[1;31m", $0, "\033[0m "); }' \
>&2 &
echo -n $! > "$printer_pid_file"