[bin] Put bin files in .local/bin

This commit is contained in:
2026-02-10 12:12:11 -05:00
parent c50d88ce26
commit d1eb0f5b3d
45 changed files with 0 additions and 0 deletions

8
bin/.local/bin/screencap Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env sh
# FFmppeg screen capture
#
REC_iface=$(pactl list sources short | awk '{print$2}' | grep 'monitor')
SCREEN_res=$(xrandr -q --current | grep '*' | awk '{print$1}')
#ffmpeg -f x11grab -r 25 -s 1920x1080 -i :0.0 -vcodec libx264 -f alsa -ac 2 -i pulse -acodec aac output.mkv
ffmpeg -video_size 1920x1080 -framerate 25 -f x11grab -i :0.0 -f alsa -ac 2 -i pulse ~/tmp/output.mp4