cleanup
This commit is contained in:
parent
220e73d4a4
commit
d1ee076835
|
@ -95,23 +95,24 @@ askrecording() {
|
|||
esac
|
||||
}
|
||||
|
||||
asktoend() {
|
||||
response=$(printf "No\\nYes" | dmenu -i -p "Recording still active. End recording?") &&
|
||||
[ "$response" = "Yes" ] && killrecording
|
||||
}
|
||||
|
||||
videoselected() {
|
||||
mkdir -p "$XDG_VIDEOS_DIR/Captures"
|
||||
eval "$(slop -f "X=%x Y=%y W=%w H=%h")"
|
||||
ffmpeg \
|
||||
-f x11grab \
|
||||
-video_size "$W"x"$H" \
|
||||
-i $DISPLAY+"$X,$Y" \
|
||||
-i "$DISPLAY+$X,$Y" \
|
||||
-c:v libx264 -qp 0 -r 30 \
|
||||
"$XDG_VIDEOS_DIR/Captures/box-$(date '+%y%m%d-%H%M-%S').mkv" &
|
||||
echo $! >/tmp/recordingpid
|
||||
updateicon ""
|
||||
}
|
||||
|
||||
asktoend() {
|
||||
response=$(printf "No\\nYes" | dmenu -i -p "Recording still active. End recording?") &&
|
||||
[ "$response" = "Yes" ] && killrecording
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
screencast) screencast ;;
|
||||
audio) audio ;;
|
||||
|
|
Loading…
Reference in New Issue