aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/screenrecord
blob: ac5c2e3be41c24f2fbc3001384405c0c11a67049 (plain)
1
2
3
4
5
#!/bin/bash

name=`date +"%b-%d-%y_%H-%M-%S"`
audio_dev=`pactl list short sources | awk '/output/ {print $2}' | head -n 1`
ffmpeg -f x11grab -s $(awk '/dimensions/ {print $2}' <(xdpyinfo)) -i :0.0 -f pulse -i $audio_dev ~/media/vid/$name.mp4