From 3971c460d132aa955d72f21f3868c16fdfe758f3 Mon Sep 17 00:00:00 2001 From: Hugo Gouveia Date: Mon, 30 Dec 2024 23:05:21 -0300 Subject: [PATCH 1/3] doc: add background-opacity needs restart --- src/config/Config.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index eb3d28d95..d84f326a6 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -560,6 +560,7 @@ palette: Palette = .{}, /// On macOS, background opacity is disabled when the terminal enters native /// fullscreen. This is because the background becomes gray and it can cause /// widgets to show through which isn't generally desirable. +/// On macOs, this setting cannot be reloaded and needs a restart @"background-opacity": f64 = 1.0, /// A positive value enables blurring of the background when background-opacity From e7354e73082ec833e5e2a907609eb0da3be20473 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 2 Jan 2025 14:05:49 -0800 Subject: [PATCH 2/3] Update src/config/Config.zig Co-authored-by: Aarni Koskela --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index d84f326a6..546374096 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -560,7 +560,7 @@ palette: Palette = .{}, /// On macOS, background opacity is disabled when the terminal enters native /// fullscreen. This is because the background becomes gray and it can cause /// widgets to show through which isn't generally desirable. -/// On macOs, this setting cannot be reloaded and needs a restart +/// On macOS, changing this configuration requires restarting Ghostty completely. @"background-opacity": f64 = 1.0, /// A positive value enables blurring of the background when background-opacity From bed37ac8446af17a2ef7baeb8e22fba1ab1d8bdd Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 2 Jan 2025 14:06:18 -0800 Subject: [PATCH 3/3] update wording --- src/config/Config.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index 546374096..14d6efc6f 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -560,6 +560,7 @@ palette: Palette = .{}, /// On macOS, background opacity is disabled when the terminal enters native /// fullscreen. This is because the background becomes gray and it can cause /// widgets to show through which isn't generally desirable. +/// /// On macOS, changing this configuration requires restarting Ghostty completely. @"background-opacity": f64 = 1.0,