mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-06-22 23:38:38 +03:00
added macos-titlebar-proxy-icon to config
This commit is contained in:
@ -1444,6 +1444,11 @@ keybind: Keybinds = .{},
|
|||||||
/// Changing this option at runtime only applies to new windows.
|
/// Changing this option at runtime only applies to new windows.
|
||||||
@"macos-titlebar-style": MacTitlebarStyle = .transparent,
|
@"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
|
/// 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 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
|
/// 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,
|
hidden,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// See macos-titlebar-proxy-icon
|
||||||
|
pub const MacTitlebarProxyIcon: type = enum {
|
||||||
|
visible,
|
||||||
|
hidden,
|
||||||
|
};
|
||||||
|
|
||||||
/// See gtk-single-instance
|
/// See gtk-single-instance
|
||||||
pub const GtkSingleInstance = enum {
|
pub const GtkSingleInstance = enum {
|
||||||
desktop,
|
desktop,
|
||||||
|
Reference in New Issue
Block a user