From 02a4a3a4c1e6116158b807674709f26933ac5b10 Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 9 Oct 2023 17:42:22 +0100 Subject: Add desktop background --- scripts/record_window.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'scripts/record_window.sh') diff --git a/scripts/record_window.sh b/scripts/record_window.sh index f3cf452..841b756 100755 --- a/scripts/record_window.sh +++ b/scripts/record_window.sh @@ -9,13 +9,11 @@ width=$(cat $info | grep Width | cut -d' ' -f4) height=$(cat $info | grep Height | cut -d' ' -f4) size="${width}x${height}" -x=$(cat $info | grep "Absolute upper-left X" | cut -d' ' -f7) -y=$(cat $info | grep "Absolute upper-left Y" | cut -d' ' -f7) -position="+$x,$y" +position=+$(echo $geom | cut -d'+' -f2- | sed "s/+/,/g") -filename=$(date +"%F_%T.mp4") +filename=$(date +"$HOME/pics/screenshot/%F_%T.mp4") echo $size and $position -ffmpeg -y -f x11grab -video_size $size -i "$position" $filename +ffmpeg -y -f x11grab -video_size $size -i $position $filename rm $info -- cgit v1.2.1