11 lines
340 B
Bash
Executable File
11 lines
340 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# needed because this script stops working after detaching laptop from docking station
|
|
#xrandr --output DP-2-1 --off --output DP-2-2 --off
|
|
|
|
xrandr --output eDP-1 --mode 1920x1080 --pos 0x0 --scale 1x1 --rotate normal \
|
|
--output DP-1 --primary --mode 1920x1080 --pos 1920x0 --rotate normal
|
|
|
|
[ -f ~/.fehbg ] && sh ~/.fehbg
|
|
|