10 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
source "/usr/lib/sp-functions"
 | 
						|
 | 
						|
current_profile=$( get_profile_id )
 | 
						|
 | 
						|
profile_scripts=$( ls "${conf_dir}/profiles/${current_profile}/shortcuts/" )
 | 
						|
op=$( echo -e "${profile_scripts}" | wofi -w 2 -i --dmenu | awk '{print}' )
 | 
						|
 | 
						|
"${conf_dir}/profiles/${current_profile}/shortcuts/${op}"
 |