-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi3wm-monitor-setup
50 lines (41 loc) · 1.29 KB
/
i3wm-monitor-setup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
MONITOR_LEFT="DP-1-2"
MONITOR_RIGHT="DP-1-3"
MONITOR_INTERNAL="eDP-1"
FILENAME="monitor.dat"
FILEPATH="$PWD/$FILENAME"
if test ! -f $FILEPATH; then
echo "ALL" > $FILEPATH
fi
monitor_mode=`cat $FILEPATH` # ALL, EXTERNAL, INTERNAL, CLONES
case $monitor_mode in
ALL) # Extend all displays
xrandr --output $MONITOR_LEFT --auto
xrandr --output $MONITOR_RIGHT --auto
xrandr --output $MONITOR_INTERNAL --auto
xrandr --output $MONITOR_INTERNAL --right-of $MONITOR_RIGHT
xrandr --output $MONITOR_LEFT --left-of $MONITOR_RIGHT
echo "EXTERNAL" > $FILEPATH
;;
EXTERNAL) # External displays only
xrandr --output $MONITOR_LEFT --auto
xrandr --output $MONITOR_RIGHT --auto
xrandr --output $MONITOR_INTERNAL --off
xrandr --output $MONITOR_LEFT --left-of $MONITOR_RIGHT
echo "CLONES" > $FILEPATH
;;
CLONES) # Clone displays
xrandr --output $MONITOR_LEFT --auto
xrandr --output $MONITOR_RIGHT --auto
xrandr --output $MONITOR_INTERNAL --auto
xrandr --output $MONITOR_LEFT --same-as $MONITOR_INTERNAL
xrandr --output $MONITOR_RIGHT --same-as $MONITOR_INTERNAL
echo "INTERNAL" > $FILEPATH
;;
*) # Internal display only
xrandr --output $MONITOR_LEFT --off
xrandr --output $MONITOR_RIGHT --off
xrandr --output $MONITOR_INTERNAL --auto
echo "ALL" > $FILEPATH
;;
esac