From 4cbef71a8d2fa28b7b07aa3678f2b40a9e369697 Mon Sep 17 00:00:00 2001 From: Leon Henrik Plickat Date: Sat, 13 Jun 2020 03:11:16 +0200 Subject: Contrib: Add debug layouts --- contrib/random-correct-layout.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 contrib/random-correct-layout.sh (limited to 'contrib/random-correct-layout.sh') diff --git a/contrib/random-correct-layout.sh b/contrib/random-correct-layout.sh new file mode 100755 index 0000000..cf663a1 --- /dev/null +++ b/contrib/random-correct-layout.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# Randomized Layout for debug purposes. + +CLIENTS="$1" +OUTPUT_WIDTH="$4" +OUTPUT_HEIGHT="$5" + +for _ in $(seq 1 "$CLIENTS") +do + WIDTH="$(( ( OUTPUT_WIDTH / 5 ) ))" + HEIGHT="$(( ( OUTPUT_HEIGHT / 5 ) ))" + X="$(( ( RANDOM % ( OUTPUT_WIDTH - WIDTH ) ) + 1 ))" + Y="$(( ( RANDOM % ( OUTPUT_HEIGHT - HEIGHT ) ) + 1 ))" + echo "$X $Y $WIDTH $HEIGHT" +done + -- cgit v1.2.3