added macos-titlebar-proxy-icon to config

This commit is contained in:
johnseth97
2024-10-24 21:52:13 -04:00
parent a889d57562
commit 93f70ce237

View File

@ -1444,6 +1444,11 @@ keybind: Keybinds = .{},
/// Changing this option at runtime only applies to new windows.
@"macos-titlebar-style": MacTitlebarStyle = .transparent,
/// State of the proxy icon for the macOS titlebar.
/// The "hidden" style hides the proxy icon.
/// The default value is "visible".
@"macos-titlebar-proxy-icon": MacTitlebarProxyIcon = .visible,
/// If `true`, the *Option* key will be treated as *Alt*. This makes terminal
/// sequences expecting *Alt* to work properly, but will break Unicode input
/// sequences on macOS if you use them via the *Alt* key. You may set this to
@ -4430,6 +4435,12 @@ pub const MacTitlebarStyle = enum {
hidden,
};
/// See macos-titlebar-proxy-icon
pub const MacTitlebarProxyIcon: type = enum {
visible,
hidden,
};
/// See gtk-single-instance
pub const GtkSingleInstance = enum {
desktop,