画面に簡単なグラフィックを描画してから、後で描いたグラフィックを消去または削除するためのコマンドラインツールはありますか?
画面の一部を強調表示するか、ウィンドウに不透明な長方形を重ねると便利です。後でグラフを消去できます。
答え1
レモンバー方法かもしれません。 HUD機能のためのものですが、画面に空の長方形を描くことができます。
# Draw a rectangle on the screen,
# then have it disappear after 3 seconds:
{ echo "" && sleep 3; } | lemonbar -n "my_lemonbar" -g 200x200+40+40 -B '#88000000'
# or for something more persistent
( echo "" | lemonbar -p -n my_lemonbar -g 200x200+40+40 -B '#88000000' ) &
# Then, to remove the box:
pgrep -f "lemonbar .+ -n my_lemonbar"