2023-01-30 22:00:53 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -ueo pipefail
|
|
|
|
|
2023-11-21 07:53:29 +00:00
|
|
|
MONITOR_ID="${MONITOR_ID:-HDMI-1}"
|
2023-11-21 23:15:06 +00:00
|
|
|
MONITOR_MODE="${MONITOR_MODE:-1920x1080}"
|
2023-11-21 07:53:29 +00:00
|
|
|
|
2023-01-30 22:00:53 +00:00
|
|
|
xrandr \
|
2023-11-21 23:15:06 +00:00
|
|
|
--output eDP-1 --mode "${MONITOR_MODE}" \
|
2023-11-21 07:53:29 +00:00
|
|
|
--output "${MONITOR_ID}" --off
|