From b1afe2649c189f429f3847f71dc840d6a80a048a Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Mon, 15 Jul 2024 21:52:19 +0300 Subject: Added some neat changes to xinitrc and xrec as well as a start for an install script of packages and their respective configurations. Changes to be committed: modified: X11/xinit new file: install.sh modified: xrec --- xrec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xrec') diff --git a/xrec b/xrec index 402a6df..867963a 100755 --- a/xrec +++ b/xrec @@ -7,13 +7,13 @@ recordingPATH=~/media/screenrecords/ case $1 in start) - dunstify -t 2000 -i /dev/null " Recording Starts In 3 Seconds" + dunstify -t 3000 -i /dev/null " Recording Starts In 3 Seconds" sleep 3 - ffmpeg -video_size 1920x1080 -framerate 60 -f x11grab -i :0.0+0,0 ${recordingPATH}screenrecording_$(($(ls $recordingPATH | wc -l)+1)).mp4 ;; + ffmpeg -video_size 1920x1080 -framerate 60 -f x11grab -i :0.0+0,0 -crf 16 ${recordingPATH}screenrecording_$(($(ls $recordingPATH | wc -l)+1)).mp4 ;; stop) pkill ffmpeg - dunstify -t 2000 -i /dev/null " Recording Finished" + dunstify -t 3000 -i /dev/null " Recording Finished" ;; esac -- cgit v1.2.3