This is a first dotfiles config. I think I have a lot more to add tho...
		
			
				
	
	
		
			9 lines
		
	
	
		
			136 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			136 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| if [ $(pgrep pulseaudio >/dev/null) ]; then
 | |
| 	volume_command=pulseaudio-ctl
 | |
| else
 | |
| 	volume_command=avol
 | |
| fi
 | |
| 
 | |
| $volume_command $@
 |