17 lines
483 B
Bash
Executable File
17 lines
483 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# needed because this script stops working after detaching laptop from docking station
|
|
#xrandr --output DP2-1 --off --output DP2-2 --off
|
|
|
|
#xrandr --output eDP-1 --primary --auto --scale "1.25x1.25" \
|
|
xrandr --output eDP-1 --primary --auto --scale "0.8x0.8" \
|
|
--output DP-1 --off \
|
|
--output DP-2 --off \
|
|
--output DP-2-1 --off \
|
|
--output DP-2-2 --off \
|
|
--output DP-2-3 --off \
|
|
--output DP-1-2 --off
|
|
|
|
[ -f ~/.fehbg ] && sh ~/.fehbg
|
|
|