feat(script): add screenon script
This commit is contained in:
parent
bffea54717
commit
0eb1cfac50
|
@ -0,0 +1,12 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Enable external screen (office-layout)
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
if [ "$(uname -s)" != "Linux" ]; then
|
||||||
|
echo "non-Linux not supported"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
xrandr --output DP-1 --mode 3440x1440 --left-of eDP-1
|
Loading…
Reference in New Issue