summaryrefslogtreecommitdiff
path: root/bin/.bin/disp
blob: 43d69879494087583f21603b06440d623c39c2c5 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

status=$(cat /sys/class/drm/card0/*HDMI*/status)
if [ $status == "connected" ]; then
    xrandr --output eDP-1 --mode 1920x1080 --pos 0x1076 --rotate normal --output HDMI-1 --primary --mode 1366x768 --scale 1.4x1.4 --pos 0x0 --rotate normal --output DP-1 --off
    bspc wm -r
else
    xrandr --output eDP-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-1 --off --output DisplayPort-0 --off
    bspc wm -r
fi