mirror of
				https://github.com/davatorium/rofi.git
				synced 2025-10-30 23:47:19 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			340 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			340 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# wait till it is up, run rofi with error message
 | 
						|
sleep 1 && rofi -show run -modi run  &
 | 
						|
RPID=$!
 | 
						|
 | 
						|
# send enter.
 | 
						|
sleep 5;
 | 
						|
xdotool key 'shift+slash' 
 | 
						|
sleep 0.4
 | 
						|
xdotool key 'shift+slash'
 | 
						|
sleep 0.4
 | 
						|
xdotool key 'shift+slash'
 | 
						|
sleep 0.4
 | 
						|
xdotool key Escape
 | 
						|
 | 
						|
#  Get result, kill xvfb
 | 
						|
wait ${RPID}
 | 
						|
RETV=$?
 | 
						|
 | 
						|
sleep 1
 | 
						|
 | 
						|
exit ${RETV}
 |