2022-05-15 23:48:34 +00:00
|
|
|
#!/bin/sh
|
|
|
|
info=/tmp/wminfo
|
|
|
|
|
|
|
|
xwininfo > /tmp/wminfo
|
|
|
|
|
|
|
|
geom=$(cat $info | grep "geometry" | cut -d' ' -f4)
|
|
|
|
|
|
|
|
width=$(cat $info | grep Width | cut -d' ' -f4)
|
|
|
|
height=$(cat $info | grep Height | cut -d' ' -f4)
|
|
|
|
|
|
|
|
size="${width}x${height}"
|
2023-10-09 16:42:22 +00:00
|
|
|
position=+$(echo $geom | cut -d'+' -f2- | sed "s/+/,/g")
|
2022-05-15 23:48:34 +00:00
|
|
|
|
2023-10-09 16:42:22 +00:00
|
|
|
filename=$(date +"$HOME/pics/screenshot/%F_%T.mp4")
|
2022-05-15 23:48:34 +00:00
|
|
|
|
|
|
|
echo $size and $position
|
2023-10-09 16:42:22 +00:00
|
|
|
ffmpeg -y -f x11grab -video_size $size -i $position $filename
|
2022-05-15 23:48:34 +00:00
|
|
|
|
|
|
|
rm $info
|