#!/bin/bash case $(hostname) in tp-mini-c) # This appears to help wake up my LG display after it's powered off. # That was on Debian Trixie with Cinnamon. # xrandr --auto # xrandr --output DP-2 --auto --primary --output DP-2 --auto --right-of HDMI-1 # xrandr --output HDMI-1 --primary --output DP-2 --auto --output DP-2 --auto --right-of HDMI-1 xrandr --output HDMI-1 --primary --output DP-2 --auto --right-of HDMI-1 ;; *) echo "$0: unrecognized hostname" 1>&2 exit 1 ;; esac