11 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/zsh
 | |
| source ${0:a:h}/xorg.zsh
 | |
| xrandr \
 | |
| 	--output eDP1 \
 | |
| 	--primary \
 | |
| 	--mode 1280x720 \
 | |
| 	--rotate normal \
 | |
| 	--pos 0x0 \
 | |
| 	&& DISCONNECT_OTHER login \
 | |
| 	|| NOTIFY "Unable to connect to do the thing :S"
 |