mirror of
https://github.com/mrfluffy-dev/dotfiles.git
synced 2026-01-16 21:30:33 +00:00
8 lines
315 B
Bash
Executable File
8 lines
315 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
DIR=$(xdg-user-dir VIDEOS)/recordings
|
|
mkdir -p "$DIR"
|
|
NAME=$(ls "$DIR" | rofi -dmenu -p "Name of the video")
|
|
# record the screen with wf-recorder and encode it
|
|
wf-recorder -t --device=/dev/dri/renderD128 -c libx264 --audio=alsa_output.pci-0000_05_00.6.analog-stereo.monitor --file=$DIR/$NAME.mp4
|