mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-30 03:51:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			298 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			298 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| window=$(xdotool getwindowfocus)
 | |
| fps=30
 | |
| audio="$(pactl get-default-sink).monitor"
 | |
| format="mp4"
 | |
| output="$HOME/downloads/recording-$(date '+%Y-%m-%d_%H-%M-%S').$format"
 | |
| 
 | |
| gpu-screen-recorder -w $window -c "mp4" -f $fps -a $audio -o $output &
 | |
| notify-send 'Screen record' 'Recording started'
 |