2016-05-15 22:48:50 +00:00
|
|
|
#!/bin/sh
|
2017-02-02 00:32:01 +00:00
|
|
|
set -e
|
|
|
|
|
2017-10-25 12:44:10 +00:00
|
|
|
TOP_LEFT="DP-1"
|
|
|
|
TOP_RIGHT="DP-3"
|
|
|
|
BOTTOM_LEFT="DP-5"
|
|
|
|
BOTTOM_RIGHT="HDMI-0"
|
2017-10-03 08:39:05 +00:00
|
|
|
|
|
|
|
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
|
2017-02-02 00:32:01 +00:00
|
|
|
|
2019-03-08 14:19:28 +00:00
|
|
|
feh --no-fehbg --no-xinerama --bg-fill $DOTFILES/lakesidesunrise.jpg
|