10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
#!/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
|
|
|