13 lines
		
	
	
		
			161 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			161 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| git stash
 | |
| git pull
 | |
| 
 | |
| qjackctl /start-server &
 | |
| JACK_PID=$!
 | |
| 
 | |
| cargo run --release audio_engine &
 | |
| AUDIO_ENGINE_PID=$!
 | |
| 
 | |
| cargo run --release gui &
 | |
| GUI_PID=$! |