8 lines
209 B
Bash
Executable File
8 lines
209 B
Bash
Executable File
#!/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;
|
|
|