Easy wasy to record the screen #1524
-
Sometimes there's a need to record some short video, mostly to capture some bug or similar. The only one that's working is https://flathub.org/apps/com.dec05eba.gpu_screen_recorder. The issue is that it can only record the whole screen, and not a part of it. Does anyone know any other options? Or maybe, is built-in screen recorder planned for Niri, next to its screenshot tool? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Fwiw in theory kooha and other gstreamer-based tools should work, but so far I haven't managed to get a pipewire gstreamer pipeline like this working. Not sure who is to blame. I usually use OBS but I agree it's a bit clunky |
Beta Was this translation helpful? Give feedback.
-
I use wl-screenrec along with slurp. https://github.com/russelltg/wl-screenrec
This will play a sound and record a section of the screen. I have it saved as a bash script that I call with key bind.
The key bind acts as a toggle to start and stop recording. |
Beta Was this translation helpful? Give feedback.
I use wl-screenrec along with slurp.
https://github.com/russelltg/wl-screenrec
aplay ~/Music/click.wav && pkill wl-screenrec || wl-screenrec -g "$(slurp)" -f ~/Videos/Screencasts/$(date +'%s_vid.mp4')
This will play a sound and record a section of the screen. I have it saved as a bash script that I call with key bind.
Super+Ctrl+Shift+F12 { spawn "sh" "-c" "windowrec.sh"; }
The key bind acts as a toggle to start and stop recording.