8 lines
209 B
Bash
8 lines
209 B
Bash
|
#!/usr/bin/env bash
|
||
|
# reset monitors to fix lid notifier bug
|
||
|
xrandr --output LVDS1 --off;
|
||
|
xrandr --output VGA1 --off;
|
||
|
xrandr --output LVDS1 --auto;
|
||
|
xrandr --output VGA1 --left-of LVDS1 --mode 1440x900 -r 75;
|
||
|
|