mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-17 09:16:11 +03:00
macos: Make "Settings…" menu item open config file in Application Support
...unless ~/.config/ghostty/config already exists, then that is opened. (Or whatever $XDG_CONFIG_HOME points to.) If both files exists, ghostty reads first the one in ~/.config/ghostty/config and then the one in Application Support, and merges the settings. In that case, the menu item opens the file at ~/.config. Fixes #2890.
This commit is contained in:
@ -1,4 +1,5 @@
|
|||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
const builtin = @import("builtin");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const internal_os = @import("../os/main.zig");
|
const internal_os = @import("../os/main.zig");
|
||||||
|
|
||||||
@ -6,7 +7,21 @@ const internal_os = @import("../os/main.zig");
|
|||||||
/// paths the main config file could be in.
|
/// paths the main config file could be in.
|
||||||
pub fn open(alloc_gpa: Allocator) !void {
|
pub fn open(alloc_gpa: Allocator) !void {
|
||||||
// default location
|
// default location
|
||||||
const config_path = try internal_os.xdg.config(alloc_gpa, .{ .subdir = "ghostty/config" });
|
var config_path = try internal_os.xdg.config(alloc_gpa, .{ .subdir = "ghostty/config" });
|
||||||
|
|
||||||
|
if (comptime builtin.os.tag == .macos) {
|
||||||
|
const xdg_config_exists = if (std.fs.accessAbsolute(config_path, std.fs.File.OpenFlags{})) true else |err| switch (err) {
|
||||||
|
error.BadPathName => false,
|
||||||
|
error.FileNotFound => false,
|
||||||
|
else => true,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!xdg_config_exists) {
|
||||||
|
alloc_gpa.free(config_path);
|
||||||
|
config_path = try internal_os.macos.appSupportDir(alloc_gpa, "config");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
defer alloc_gpa.free(config_path);
|
defer alloc_gpa.free(config_path);
|
||||||
|
|
||||||
// Create config directory recursively.
|
// Create config directory recursively.
|
||||||
|
Reference in New Issue
Block a user