mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-30 20:11:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			237 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			237 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| if amixer get Capture | tail -2 | grep -q '\[on\]'; then
 | |
|     paplay ~/.local/bin/tools/audio/mic_muted.wav
 | |
|     lmc mute
 | |
|     lmc undeaf
 | |
| else
 | |
|     lmc unmute
 | |
|     lmc undeaf
 | |
|     paplay ~/.local/bin/tools/audio/mic_activated.wav
 | |
| fi
 |