mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-11-03 22:11:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			363 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			363 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
vol="$(pulsemixer --get-volume | awk '{print $1}')"
 | 
						|
 | 
						|
if [ "$vol" -eq "0" ]; then
 | 
						|
	icon=""
 | 
						|
elif [ "$vol" -gt "70" ]; then
 | 
						|
	icon=""
 | 
						|
else
 | 
						|
	icon=""
 | 
						|
fi
 | 
						|
 | 
						|
[ "$(pulsemixer --get-mute)" = "1" ] && icon="" && vol="-"
 | 
						|
 | 
						|
if amixer get Capture | tail -2 | grep -q '\[on\]'; then
 | 
						|
	mic=""
 | 
						|
else
 | 
						|
	mic=""
 | 
						|
fi
 | 
						|
 | 
						|
printf "%s %s %s\\n" "$mic" "$icon" "$vol%"
 |