#!/bin/sh # Get monitor offset using xrandr monitor_offset="+1080" display=$(xrandr --listactivemonitors | grep "$monitor_offset" | head -n1 | cut -d' ' -f6) if [ -n "$display" ]; then xrandr --output $display --primary fi