Files
omarchy/bin/omarchy-screenrecord
David Heinemeier Hansson 309c35c866 Extract shared function
2025-07-19 17:02:52 -05:00

22 lines
588 B
Bash
Executable File

#!/bin/bash
screenrecording() {
wl-screenrec \
-f "$HOME/Videos/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4" \
--ffmpeg-encoder-options="-c:v libx264 -crf 23 -preset medium -movflags +faststart"
}
if pgrep -x wl-screenrec >/dev/null; then
pkill -x wl-screenrec
notify-send "Screen recording saved to ~/Videos" -t 2000
elif [[ $1 == "output" ]]; then
notify-send "Screen recording starting..." -t 1000
sleep 1
screenrecording -o ""
else
region=$(slurp) || exit 1
notify-send "Screen recording starting..." -t 1000
sleep 1
screenrecording -g "$region"
fi