mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 11:43:03 +03:00
9 lines
430 B
Bash
Executable file
9 lines
430 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# [[file:../../Desktop.org::*Device-specific settings][Device-specific settings: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 1920x1080 --pos 1920x0 --rotate normal
|
|
elif [ "$hostname" = "eminence" ]; then
|
|
xgamma -gamma 1.25
|
|
fi
|
|
# Device-specific settings:1 ends here
|