summaryrefslogtreecommitdiff
path: root/scripts/record_window.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/record_window.sh')
-rwxr-xr-xscripts/record_window.sh8
1 files changed, 3 insertions, 5 deletions
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