mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-31 12:31:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			249 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			249 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| if amixer get Master | tail -2 | grep -q '\[on\]'; then
 | |
|     notify-send -u low 'sxhkd' 'Sound muted\nMicrophone muted'
 | |
|     lmc mute
 | |
|     lmc deaf
 | |
| else
 | |
|     lmc mute
 | |
|     lmc undeaf
 | |
|     paplay ~/.local/bin/etc/sxhkd/audio/sound_resumed.wav
 | |
| fi
 |