Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Blurry Terminal in VS Code

Why is the text in terminal blurry?

I have been using Visual Studio Code for a few months, but for some reason, it just became blurry. The only thing I really changed was the theme. I set it to default but it is still blurry. Why is this occurring?

like image 279
Dante Avatar asked Sep 17 '25 00:09

Dante


2 Answers

I had to change the gpuAcceleration setting for the integrated terminal from the default auto to either off or canvas.

In the settings.json that is achieved with:

{
    "terminal.integrated.gpuAcceleration": "canvas",
}
like image 168
cuzi Avatar answered Sep 18 '25 14:09

cuzi


If you have tried any transparent background extensions in VS Code like Vibrancy Continued or Transparent, these extensions can force you to install other stuff that does these background animations.

I tried setting

"terminal.integrated.gpuAcceleration": 'off'

to solve the issue (because everyone in the internet tells this is the solution), yet I found a more decent solution.

Just open your settings.json file and by hand, comment some lines that you are suspicious about giving a blurry terminal. I fixed my blurry terminal with this approach.

like image 43
HazarN Avatar answered Sep 18 '25 15:09

HazarN