my dwmblocks setup
This commit is contained in:
		
							
								
								
									
										19
									
								
								dwmblocks_scripts/dwm_volume
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										19
									
								
								dwmblocks_scripts/dwm_volume
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,19 @@
 | 
			
		||||
#!/bin/sh
 | 
			
		||||
 | 
			
		||||
vol="$(amixer get Master | tail -n1 | sed -r 's/.*\[(.*)%\].*/\1/')"
 | 
			
		||||
 | 
			
		||||
## if any argument
 | 
			
		||||
if [ $# -gt 0 ]; then
 | 
			
		||||
    stat="$(amixer get Master | tail -n1 | sed -r 's/.*\[(.*)].*/\1/')"
 | 
			
		||||
    if [[ $(echo $stat) == "on" ]]; then
 | 
			
		||||
    	echo " 🔊  $vol"
 | 
			
		||||
    	exit
 | 
			
		||||
    fi
 | 
			
		||||
    echo " 🔇  $vol"
 | 
			
		||||
    exit
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## just returns volume %
 | 
			
		||||
vol="$(amixer get Master | tail -n1 | sed -r 's/.*\[(.*)%\].*/\1/')"
 | 
			
		||||
echo -e "$vol"
 | 
			
		||||
		Reference in New Issue
	
	Block a user