blob: 8c6507838b16864e988e3daa8e911d03ed71376a (
plain)
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
|
#!/bin/bash
xrandr --output VIRTUAL1 --off
xrandr --output HDMI2 --off
xrandr --output DP1 --off
xrandr --output DP2 --off
xset r rate 250 50
has_hdmi2=$(xrandr | grep '^HDMI2 connected')
has_dp1=$(xrandr | grep '^DP1 connected')
has_dp2=$(xrandr | grep '^DP2 connected')
if [[ $has_hdmi2 && $has_dp1 ]]; then
xrandr --output DP1 --right-of eDP1 --auto
xrandr --output HDMI2 --right-of DP1 --auto
xrandr --output DP1 --primary
else
if [[ $has_hdmi2 ]]; then
xrandr --output HDMI2 --right-of eDP1 --auto
fi
if [[ $has_dp1 ]]; then
xrandr --output DP1 --right-of eDP1 --auto
fi
if [[ $has_dp2 ]]; then
xrandr --output DP2 --right-of eDP1 --auto
fi
xrandr --output eDP1 --primary
fi
xkbcomp .xkbmap "$DISPLAY"
|