mirror of
				https://github.com/frebib/dotfiles.git
				synced 2024-06-14 12:57:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			479 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			479 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
set -e
 | 
						|
 | 
						|
TOP_LEFT="DP-1"
 | 
						|
TOP_RIGHT="DP-3"
 | 
						|
BOTTOM_LEFT="DP-5"
 | 
						|
BOTTOM_RIGHT="HDMI-0"
 | 
						|
 | 
						|
xrandr --output $BOTTOM_LEFT --primary --mode 1920x1080 --pos 0x1080 --rotate normal \
 | 
						|
       --output $TOP_LEFT --mode 1920x1080 --pos 0x0 --rotate inverted \
 | 
						|
       --output $TOP_RIGHT --mode 1920x1080 --pos 1920x0 --rotate inverted \
 | 
						|
       --output $BOTTOM_RIGHT --mode 1920x1080 --pos 1920x1080 --rotate normal
 | 
						|
 | 
						|
feh --no-fehbg --no-xinerama --bg-fill $DOTFILES/lakesidesunrise.jpg
 |