mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-15 00:50:03 +00:00
parent
5249a9076a
commit
e90db7f07f
@ -70,6 +70,10 @@ export class Application {
|
|||||||
app.commandLine.appendSwitch('enable-transparent-visuals')
|
app.commandLine.appendSwitch('enable-transparent-visuals')
|
||||||
app.disableHardwareAcceleration()
|
app.disableHardwareAcceleration()
|
||||||
}
|
}
|
||||||
|
if (this.configStore.hacks?.disableGPU) {
|
||||||
|
app.commandLine.appendSwitch('disable-gpu')
|
||||||
|
app.disableHardwareAcceleration()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.userPluginsPath = path.join(
|
this.userPluginsPath = path.join(
|
||||||
|
@ -36,3 +36,5 @@ vault: null
|
|||||||
encrypted: false
|
encrypted: false
|
||||||
enableExperimentalFeatures: false
|
enableExperimentalFeatures: false
|
||||||
pluginBlacklist: []
|
pluginBlacklist: []
|
||||||
|
hacks:
|
||||||
|
disableGPU: false
|
||||||
|
@ -98,6 +98,8 @@ h3.mb-3 Window
|
|||||||
)
|
)
|
||||||
| Full
|
| Full
|
||||||
|
|
||||||
|
h3.mt-4 Docking
|
||||||
|
|
||||||
.form-line(*ngIf='docking')
|
.form-line(*ngIf='docking')
|
||||||
.header
|
.header
|
||||||
.title Dock the terminal
|
.title Dock the terminal
|
||||||
@ -211,6 +213,8 @@ h3.mb-3 Window
|
|||||||
(ngModelChange)='saveConfiguration(); ',
|
(ngModelChange)='saveConfiguration(); ',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
h3.mt-4 Tabs
|
||||||
|
|
||||||
.form-line
|
.form-line
|
||||||
.header
|
.header
|
||||||
.title Tabs location
|
.title Tabs location
|
||||||
@ -288,3 +292,15 @@ h3.mb-3 Window
|
|||||||
[(ngModel)]='config.store.terminal.hideCloseButton',
|
[(ngModel)]='config.store.terminal.hideCloseButton',
|
||||||
(ngModelChange)='config.save();',
|
(ngModelChange)='config.save();',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
h3.mt-4 Hacks
|
||||||
|
|
||||||
|
.form-line
|
||||||
|
.header
|
||||||
|
.title Disable GPU acceleration
|
||||||
|
.description Tick this if you're experiencing aliasing, ghosting or other visual issues
|
||||||
|
|
||||||
|
toggle(
|
||||||
|
[(ngModel)]='config.store.hacks.disableGPU',
|
||||||
|
(ngModelChange)='config.save(); config.requestRestart()'
|
||||||
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user