mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-17 17:26:09 +03:00
expand comment + rename
This commit is contained in:
@ -146,13 +146,15 @@ pub fn init(core_app: *CoreApp, opts: Options) !App {
|
|||||||
|
|
||||||
var gdk_disable: struct {
|
var gdk_disable: struct {
|
||||||
@"gles-api": bool = false,
|
@"gles-api": bool = false,
|
||||||
|
/// current gtk implementation for color management is not good enough.
|
||||||
|
/// see: https://bugs.kde.org/show_bug.cgi?id=495647
|
||||||
@"color-mgmt": bool,
|
@"color-mgmt": bool,
|
||||||
/// Disabling Vulkan can improve startup times by hundreds of
|
/// Disabling Vulkan can improve startup times by hundreds of
|
||||||
/// milliseconds on some systems. We don't use Vulkan so we can just
|
/// milliseconds on some systems. We don't use Vulkan so we can just
|
||||||
/// disable it.
|
/// disable it.
|
||||||
vulkan: bool = false,
|
vulkan: bool = false,
|
||||||
} = .{
|
} = .{
|
||||||
.@"color-mgmt" = config.@"disable-gtk-color-mgmt",
|
.@"color-mgmt" = config.@"gtk-gdk-disable-color-mgmt",
|
||||||
};
|
};
|
||||||
|
|
||||||
environment: {
|
environment: {
|
||||||
|
@ -1350,9 +1350,18 @@ keybind: Keybinds = .{},
|
|||||||
/// Specified as either hex (`#RRGGBB` or `RRGGBB`) or a named X11 color.
|
/// Specified as either hex (`#RRGGBB` or `RRGGBB`) or a named X11 color.
|
||||||
@"window-titlebar-foreground": ?Color = null,
|
@"window-titlebar-foreground": ?Color = null,
|
||||||
|
|
||||||
/// current gtk implementation for color management is not good enough.
|
/// Controls whether to disable GDK color management in GTK applications.
|
||||||
/// see: https://bugs.kde.org/show_bug.cgi?id=495647
|
///
|
||||||
@"disable-gtk-color-mgmt": bool = false,
|
/// By default this is set to `false`, meaning color management is enabled.
|
||||||
|
/// You may want to enable this setting (set to `true`) if you experience:
|
||||||
|
/// - Incorrect or washed out colors in your terminal
|
||||||
|
/// - Color inconsistencies between GTK applications
|
||||||
|
/// - Performance issues related to color management
|
||||||
|
///
|
||||||
|
/// This is a workaround for known issues with GTK's color management implementation,
|
||||||
|
/// particularly affecting applications running under Wayland.
|
||||||
|
/// See: https://bugs.kde.org/show_bug.cgi?id=495647
|
||||||
|
@"gtk-gdk-disable-color-mgmt": bool = false,
|
||||||
|
|
||||||
/// This controls when resize overlays are shown. Resize overlays are a
|
/// This controls when resize overlays are shown. Resize overlays are a
|
||||||
/// transient popup that shows the size of the terminal while the surfaces are
|
/// transient popup that shows the size of the terminal while the surfaces are
|
||||||
|
Reference in New Issue
Block a user