add autostart.sh dependency to git
[distro-setup] / desktop-20-autostart.sh
1 #!/bin/bash -l
2
3 # first 2 alternatives showed under ubuntu 14.04, second 2 under arch at 11/2015
4
5 right_monitor_rotation=left
6 if [[ $1 ]]; then
7 right_monitor_rotation=normal
8 fi
9
10
11 xout="$(xrandr)"
12 xe() { echo "$xout"; }
13 x=$(xe | grep -E '^(DisplayPort-[0123]|DVI-0|DP-[1234]|DVI-I-1) connected' | wc -l)
14 if (( x > 2 )); then
15 left=$(xe | sed -rn 's/^(DVI[^ ]+) connected .*/\1/p')
16 dps=( $(xe | sed -rn 's/^(DP-[01234]|DisplayPort-[01234]) connected .*/\1/p') )
17
18 middle=${dps[1]}
19 right=${dps[0]}
20 # on older distros, i needed to swap middle and right.
21
22
23 xrandr --output $left --mode 2560x1600 --pos 0x0 --rotate left \
24 --output $middle --mode 2560x1600 --pos 1600x0 --rotate left \
25 --output $right --mode 2560x1600 --pos 3200x0 --rotate $right_monitor_rotation
26 elif (( x == 2 )); then
27 # 3rd monitor not working atm, so doing this.
28 left=$(xe | sed -rn 's/^(DVI[^ ]+) connected .*/\1/p')
29 middle=$(xe | sed -rn 's/^(DP-[01234]|DisplayPort-[01234]) connected .*/\1/p')
30 xrandr --output $left --mode 2560x1600 --pos 0x0 --rotate left \
31 --output $middle --mode 2560x1600 --pos 1600x0 --rotate left
32
33 fi
34 /a/bin/input-setup.sh
35 if isarch; then
36 pulseaudio --start
37 fi
38 date "+%A, %B %d, %r, %S seconds" > /tmp/desktop-20-autostart-log