Para automatizar seu script, coloque o seguinte em um script e dê a ele x-bits (arquivo chmod + x)
#!/bin/bash
Display=$(xrandr | grep VGA)
ModeSet=$(echo "$Display" | grep '1368x768')
if [[ "$ModeSet" != "" ]]
then
echo "Mode already set: $Display" | cut -d'(' -f1
else
xrandr --newmode "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
xrandr --addmode ${Display%%\ *} 1368x768_60.00
xrandr --output ${Display%%\ *} --mode "1368x768_60.00"
echo -e "Mode set: \c"
xrandr | grep VGA | cut -d'(' -f1
fi