blob: 417206164c6cb198819b784db09c22bc74327fd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# xrandr
## Use second screen
xrandr --output HDMI1 --auto --above eDP1
## Turn off second screen
xrandr --output HDMI1 --off
## Profile loading
Install `autorandr`.
# Save and name the current setup
autorandr --save <profile name>
# Load a previously saved setup
autorandr --load <profile name>
|