Typora使用了0号显卡,怀疑是导致其卡顿的原因Typora启动加速

Typora使用了0号显卡,怀疑是导致其卡顿的原因。
于是决定关闭GPU, 找到Typora的配置文件
大概在如下所示位置

c:\Users\AppData\Roaming\Typora\conf\conf.user.json
打开后修改flags, 保存并重启typora,就不再使用GPU了:

“flags”: [[“disable-gpu”]]
禁用GPU之后,软件启动的时候比之前慢,但是打开之后不卡顿了。
怀疑是跟Chromium,GPU驱动有冲突。
有兴趣的同学可以试一下换1号GPU支持来试一下。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** For advanced users. */
{
"defaultFontFamily": {
"standard": null, //String - Defaults to "Times New Roman".
"serif": null, // String - Defaults to "Times New Roman".
"sansSerif": null, // String - Defaults to "Arial".
"monospace": null // String - Defaults to "Courier New".
},
"autoHideMenuBar": false, //Boolean - Auto hide the menu bar unless the `Alt` key is pressed. Default is false.

// Array - Search Service user can access from context menu after a range of text is selected. Each item is formatted as [caption, url]
"searchService": [
["Search with Google", "https://google.com/search?q=%s"]
],

// Custom key binding, which will override the default ones.
// see https://support.typora.io/Shortcut-Keys/#windows--linux for detail
"keyBinding": {
// for example:
// "Always on Top": "Ctrl+Shift+P"
// All other options are the menu items 'text label' displayed from each typora menu
},

"monocolorEmoji": false, //default false. Only work for Windows
"maxFetchCountOnFileList": 500,
"flags": [["disable-gpu"]] // default [], append Chrome launch flags, e.g: [["disable-gpu"], ["host-rules", "MAP * 127.0.0.1"]]
}


Typora使用了0号显卡,怀疑是导致其卡顿的原因Typora启动加速
http://example.com/2021/11/10/Typora使用了0号显卡,怀疑是导致其卡顿的原因Typora启动加速/
作者
MuyanGit
发布于
2021年11月10日
许可协议