OK, então, eu mesmo descobri. Caso alguém encontre esse problema, vou descrever a solução que me ajudou.
-
Eu removi o nvidia-current, já que o cartão de vídeo deste notebook é Intel:
sudo apt-get --purge remove nvidia-current
-
Alterado o arquivo /etc/X11/xorg.conf:
sudo gedit /etc/X11/xorg.conf
Assim:
Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
Modeline "1366x768_59.90" 106.29 1366 1520 1672 1904 768 901 904 932 -HSync +Vsync
Option "PreferredMode" "1366x768_59.90"
EndSection
Section "Device"
Identifier "Device0"
Driver "intel"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Modes "1366x768_59.90"
Depth 24
EndSubSection
EndSection
A chave era colocar o driver "intel" por lá, isso pode realmente ser o suficiente, mas eu também adicionei a resolução que finalmente fez isso para mim.