From 7f11e930d549f78ddc892639b4946f616a8e0945 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Wed, 19 Aug 2026 20:06:44 +0100 Subject: Added a new script with keybindings to record the focused output, window or selected region. --- .local/bin/screenrecord.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 .local/bin/screenrecord.sh (limited to '.local/bin') diff --git a/.local/bin/screenrecord.sh b/.local/bin/screenrecord.sh new file mode 100755 index 0000000..c60d46c --- /dev/null +++ b/.local/bin/screenrecord.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +# Get focused output +output="$( moocow show windows | jq -r '.data[] | select(.focused == true) | .output')" + +case $1 in + selected-region) + # Record the selected region + wf-recorder -g "$(slurp)" -f ~/Videos/"$(date +%Y-%m-%d_%H-%m-%s)".mkv + ;; + focused-window) + # Record the focused window + geometry=$(moocow winops -I | jq -r '.data.frame | "\(.x),\(.y) \(.width)x\(.height)"') + echo "$geometry" + wf-recorder -g "$geometry" -f ~/Videos/"$(date +%Y-%m-%d_%H-%m-%s)".mkv + ;; + *) + # Record the currently focused output and save it into Screenrecordings + wf-recorder -o "$output" -f ~/Videos/"$(date +%Y-%m-%d_%H-%m-%s)".mkv + ;; +esac -- cgit v1.3