blob: e3b625d07fed2ca4f6e0f6349290c9777f1b7852 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
#!/bin/sh
xrandr \
	--output HDMI-0 --mode 1920x1080 --rate 60 --pos 0x0 --rotate normal \
	--output DP-0 --off \
	--output DP-1 --off \
	--output DP-2 --mode 2560x1440 --rate 144 --pos 4480x0 --rotate normal \
	--output DP-3 --off \
	--output DP-4 --primary --mode 2560x1440 --rate 144 --pos 1920x0 --rotate normal \
	--output DP-5 --off
# feh --no-fehbg --image-bg '#1d2021' --no-xinerama --bg-fill "$HOME"/pics/wp.jpg
setwp "$HOME"/pics/platform.jpg
  |