It sounds like you're having a bit of a pickle with your display resolution on Ubuntu. Don't fret, mate! You should be able to tweak those settings and get things sorted out without having to hop back to Windows.
First off, have you tried checking if Ubuntu recognizes your monitor correctly? Sometimes, the system might not detect it properly, which could mess with your resolution settings.
Next, let's see if we can manually set that 1366768 resolution. Open up your Terminal and type in xrandr
to see the available resolutions. If 1366768 isn't listed, we might need to add it manually.
To do that, you'll need to create a new mode with cvt
. It goes a little something like this:
cvt 1366 768 60
This command generates a Modeline for a 1366*768 resolution at 60Hz. Once you have that, copy the output starting from "Modeline" (excluding the word "Modeline") up to the end.
Then, use xrandr
to add this new mode:
xrandr --newmode <paste the modeline here>
After that, you need to add this new mode to your display:
xrandr --addmode <your display name> 1366x768_60.00
Finally, you can set your display to use this new resolution:
xrandr --output <your display name> --mode 1366x768_60.00
Replace <your display name>
with the actual name of your display, which you can find using xrandr
.
Give that a whirl and see if it sticks! If it doesn't work right away, you might need to do a bit of tinkering or dig deeper into your graphics drivers. But with a little perseverance, you should be able to get that sweet 1366*768 resolution up and running on Ubuntu. No need to wave goodbye to Windows just yet!