Sometimes when I use Vmware to install a Linux virtual machine there is no 1920×1080 option for screen resolution. Simple copy the below lines and save the file as setscreen.sh in /usr/local/bin. Chmod the file 755 or 777 and set it as a startup program – voila…..your resolution is correct.

xrandr --newmode "1920x1080"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080

By admin