16 lines
310 B
Plaintext
16 lines
310 B
Plaintext
|
#!/bin/zsh
|
||
|
source ${0:a:h}/common
|
||
|
[ ! $PRIMARY_MONITOR ] && {
|
||
|
NOTIFY 'Unable to detect primary monitor'
|
||
|
return
|
||
|
}
|
||
|
|
||
|
xrandr \
|
||
|
--output $PRIMARY_MONITOR \
|
||
|
--primary \
|
||
|
--mode 1920x1080 \
|
||
|
--rotate normal \
|
||
|
--pos 0x0 \
|
||
|
&& DISCONNECT_OTHER gamedock \
|
||
|
|| NOTIFY "Unable to set '$PRIMARY_MONITOR' to 1920x1080"
|