16 lines
		
	
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# killall volup
 | 
						|
# killall voldown
 | 
						|
dunstctl close
 | 
						|
pamixer --allow-boost -i 5
 | 
						|
pw-play ~/.guix-home/profile/share/sounds/freedesktop/stereo/audio-volume-change.oga &
 | 
						|
volume=$(pulsemixer --get-volume | awk '{print $1}')
 | 
						|
echo $volume > /tmp/vol
 | 
						|
notify-send $volume
 | 
						|
 | 
						|
# eww open volume &
 | 
						|
 | 
						|
# sleep 3
 | 
						|
 | 
						|
# eww close volume
 |