mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 19:45:25 +03:00
7 lines
335 B
Bash
Executable file
7 lines
335 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# [[file:../../Desktop.org::*Screen layout][Screen layout:1]]
|
|
hostname=$(hostname)
|
|
if [ "$hostname" = "indigo" ]; then
|
|
xrandr --output DisplayPort-0 --off --output HDMI-A-0 --mode 1920x1080 --pos 0x0 --rotate normal --output DVI-D-0 --mode 1366x768 --pos 1920x312 --rotate normal
|
|
fi
|
|
# Screen layout:1 ends here
|