13 lines
		
	
	
		
			236 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			236 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
choices="Left\nRight\nDuplicated\nHDMI\nMonitor\n"
 | 
						|
 | 
						|
chosen=$(echo -e "$choices" | dmenu -i)
 | 
						|
 | 
						|
case "$chosen" in
 | 
						|
	Monitor) mons -o ;;
 | 
						|
	Duplicated) mons -d ;;
 | 
						|
	Left) mons -e left ;;
 | 
						|
	Right) mons -e right ;;
 | 
						|
	HDMI) mons -s
 | 
						|
esac
 |