12 lines
		
	
	
		
			236 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			236 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| if command -v rofi >/dev/null 2>&1;
 | |
| then
 | |
|     launcher="rofi -show run"
 | |
| else
 | |
|     launcher="dmenu_run -fn  "-*-cure-medium-*-*-*-11-*-*-*-*-*-*-*" -nb "#101010" -nf "#5f5f5f" -sb "#191919" -sf "#b72f62" -b"
 | |
| fi
 | |
| 
 | |
| $launcher "$@"
 | |
| 
 |