2023-01-28 20:49:10 +00:00
|
|
|
self:
|
|
|
|
with self; ''
|
2022-08-14 16:03:32 +00:00
|
|
|
mkdir -p "$HOME/Videos/Screenrecordings"
|
|
|
|
GEOMETRY="$(slurp -d -b \#ffffff11)"
|
|
|
|
RESOLUTION="$(echo $GEOMETRY | awk '{print $2}')"
|
|
|
|
FILE_LOCATION="$HOME/Videos/Screenrecordings/$(${coreutils}/bin/date +%Y%m%d_%Hh%Mm%Ss)_$RESOLUTION.mp4"
|
|
|
|
echo "Recording $GEOMETRY into $FILE_LOCATION"
|
|
|
|
${alacritty}/bin/alacritty \
|
|
|
|
--class screen-recorder \
|
|
|
|
-e ${wf-recorder}/bin/wf-recorder -g "$GEOMETRY" -f "$FILE_LOCATION"
|
|
|
|
''
|