13 lines
404 B
Bash
Executable File
13 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Ignore sleep when run script from startwlrscreensaver.sh
|
|
if [ "${1}" == "screensaver" ] ; then
|
|
echo "Load monitor configuration quickly"
|
|
else
|
|
sleep 2
|
|
fi
|
|
|
|
# Configuration for your monitor(s). Use wlr-randr and/or wdisplays for help
|
|
wlr-randr --output HDMI-A-1 --custom-mode 1920x1080@75Hz --pos 0,70
|
|
wlr-randr --output HDMI-A-2 --custom-mode 1280x1024@75Hz --transform 90 --pos 1920,70
|