blob: 18e683718f3f1106266d6b42c6531ab914129700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
if [[ $DISPLAY == :1 ]]; then
echo "running on virtmon, exiting"
exit 0
fi
xrandr --output DP-0 --mode 1280x720 --rate 165
xrandr --output HDMI-0 --off
sleep 1
term -e "$HOME/.restart-panel"
|