From 98709fc0c435343f36642892fc45bf0313579dad Mon Sep 17 00:00:00 2001 From: Rien Maertens Date: Mon, 24 Feb 2020 09:30:12 +0100 Subject: [PATCH] Fix landscape_param --- reStream.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reStream.sh b/reStream.sh index 0b43bbe..01b643d 100755 --- a/reStream.sh +++ b/reStream.sh @@ -25,11 +25,10 @@ fi window_bytes="$(($width*$height*$bytes_per_pixel))" -orientation_param="$($landscape && echo '-vf transpose=1')" +landscape_param="$($landscape && echo '-vf transpose=1')" head_fb0="dd if=/dev/fb0 count=1 bs=$window_bytes 2>/dev/null" read_loop="while $head_fb0; do $loop_wait; done | $compress" - set -e ssh "$ssh_host" "$read_loop" \