9 lines
		
	
	
		
			133 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			133 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| if [[ "${1:-}" = slack://* ]]
 | |
| then
 | |
|     exec /usr/lib/slack/slack --enable-crashpad "$1"
 | |
| fi
 | |
| 
 | |
| exec /usr/bin/xdg-open "$@"
 |