22 lines
689 B
Bash
Executable File
22 lines
689 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# reset first
|
|
xrandr --output eDP-1 --auto \
|
|
--output DP-1-1 --off \
|
|
--output DP-1-2 --off \
|
|
--output DP-1-3 --off \
|
|
--output DP-2-1 --off \
|
|
--output DP-2-2 --off \
|
|
--output DP-2-3 --off
|
|
|
|
#xrandr --output eDP-1 --off --mode 1920x1080 --scale "1.25x1.25" --pos 0x0 \
|
|
# --output DP-2-3 --primary --mode 1920x1080 --scale "1.5x1.5" --pos 2400x0
|
|
|
|
xrandr --output eDP-1 --mode 1920x1080 --pos 0x0 --scale 1x1 --rotate normal \
|
|
--output DP-1-1 --primary --mode 2560x1080 --pos 1920x0 --scale 1x1 --rotate normal \
|
|
--output DP-2-3 --mode 1920x1080 --pos 4480x0 --scale 1x1 --rotate normal
|
|
|
|
|
|
[ -f ~/.fehbg ] && sh ~/.fehbg
|
|
|