mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
20 lines
351 B
Bash
20 lines
351 B
Bash
#!/bin/sh
|
|
#
|
|
# Viu Review Info Script Template
|
|
# This script formats and displays review details in the FZF preview pane.
|
|
# Python injects the actual data values into the placeholders.
|
|
|
|
draw_rule
|
|
|
|
print_kv "Review By" "{REVIEWER_NAME}"
|
|
|
|
draw_rule
|
|
|
|
print_kv "Summary" "{REVIEW_SUMMARY}"
|
|
|
|
draw_rule
|
|
|
|
echo "{REVIEW_BODY}" | fold -s -w "$WIDTH"
|
|
|
|
draw_rule
|